-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.56 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
60
61
62
{
"name": "foxtrot-frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "nuxt build",
"lint": "vue-cli-service lint",
"dev": "nuxt",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"start": "nuxt start",
"test": "jest",
"watch": "jest --watchAll"
},
"dependencies": {
"@nuxtjs/axios": "^5.12.3",
"axios": "^0.21.1",
"core-js": "^3.6.5",
"dayjs": "^1.10.3",
"nuxt": "^2.14.6",
"nuxt-i18n": "^6.20.0",
"portal-vue": "^2.1.7",
"vue": "^2.6.12",
"vuetify": "^2.3.21",
"vuex": "^3.6.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/vuetify": "^1.11.2",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.1.0",
"axios-mock-adapter": "^1.19.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"fibers": "^5.0.0",
"jest": "^26.5.0",
"lint-staged": "^9.5.0",
"prettier": "^2.1.2",
"sass": "^1.32.0",
"sass-loader": "^10.1.0",
"vue-i18n": "^8.22.4",
"vue-jest": "^3.0.4"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"jest --findRelatedTests",
"git add"
]
}
}