-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
63
64
65
66
{
"name": "vue-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit --passWithNoTests",
"test:unit:watch": "vue-cli-service test:unit --watchAll --passWithNoTests",
"test:unit:coverage": "vue-cli-service test:unit --coverage --passWithNoTests",
"lint": "vue-cli-service lint --no-fix",
"lint:styles": "stylelint \"src/**/*.{vue,scss}\"",
"bundle-report": "vue-cli-service build --report"
},
"dependencies": {
"axios": "0.21.1",
"core-js": "3.8.2",
"register-service-worker": "1.7.2",
"vue": "2.6.12",
"vue-router": "3.4.9",
"vuex": "3.6.0"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@intlify/eslint-plugin-vue-i18n": "0.10.0",
"@vue/cli-plugin-babel": "4.5.9",
"@vue/cli-plugin-eslint": "4.5.9",
"@vue/cli-plugin-pwa": "4.5.9",
"@vue/cli-plugin-router": "4.5.9",
"@vue/cli-plugin-unit-jest": "4.5.9",
"@vue/cli-plugin-vuex": "4.5.9",
"@vue/cli-service": "4.5.9",
"@vue/eslint-config-airbnb": "5.3.0",
"@vue/test-utils": "1.1.2",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-vue": "7.4.0",
"eslint-plugin-vue-types": "2.0.0",
"husky": "4.3.6",
"jest-fetch-mock": "3.0.3",
"jest-mock-axios": "4.2.1",
"lint-staged": "10.5.3",
"node-sass": "5.0.0",
"rfs": "9.0.3",
"sass-loader": "10.1.0",
"stylelint": "13.8.0",
"stylelint-config-sass-guidelines": "7.1.0",
"stylelint-scss": "3.18.0",
"vue-i18n": "8.22.2",
"vue-template-compiler": "2.6.12",
"vue-types": "2.0.2",
"vuex-persistedstate": "3.1.0"
},
"engines": {
"node": ">=10.13.3",
"yarn": ">=1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}