This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
59 lines (59 loc) · 1.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@ourjapanlife/findadoc-frontend",
"version": "1.0.0",
"private": true,
"license": "BSD-3",
"scripts": {
"dev": "nuxt dev --dotenv .env.test",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"netlify": "nuxt generate",
"lint": "eslint . --ext .js,.vue,.json && prettier --write **/*.{js,vue,json,scss,md}",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/firebase": "^7.6.1",
"@nuxtjs/proxy": "^2.1.0",
"@ourjapanlife/findadoc-localization": "https://github.com/ourjapanlife/findadoc-localization#v1.1.8",
"core-js": "^3.9.1",
"firebase": "^8.6.7",
"nuxt": "^2.15.3",
"nuxt-i18n": "^6.27.1",
"vue-tweet-embed": "^2.4.0",
"vuelidate": "^0.7.6"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@intlify/eslint-plugin-vue-i18n": "^0.11.1",
"@nuxtjs/tailwindcss": "^4.2.1",
"@nuxtjs/vuetify": "^1.11.3",
"babel-jest": "^27.2.2",
"autoprefixer": "^10.3.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-vue": "^7.11.1",
"husky": "^6.0.0",
"jest": "^27.2.2",
"lint-staged": "^11.0.0",
"postcss": "^8.3.6",
"prettier": "2.3.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"tailwindcss": "^2.2.7"
},
"lint-staged": {
"**/*.{js,vue,json}": [
"eslint"
],
"**/*.{js,vue,json,css,scss,md}": [
"prettier --write"
]
}
}