-
Notifications
You must be signed in to change notification settings - Fork 253
/
Copy pathpackage.json
88 lines (88 loc) · 2.18 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "vue-2-boilerplate",
"version": "0.0.0",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "vue-cli-service test",
"e2e": "vue-cli-service e2e",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"core-js": "^3.8.3",
"font-awesome": "^4.7.0",
"register-service-worker": "^1.7.2",
"vue": "^2.6.12",
"vue-i18n": "^8.22.4",
"vue-router": "^3.5.1",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-e2e-nightwatch": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-mocha": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"chromedriver": "88",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"geckodriver": "^1.20.0",
"lint-staged": "^9.5.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-template-compiler": "^2.6.11"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"author": "Peter van Meijgaard <[email protected]>",
"description": "A boilerplate for medium to large Vue 2 single page applications",
"bugs": {
"url": "https://github.com/petervmeijgaard/vue-2-boilerplate/issues"
},
"homepage": "https://github.com/petervmeijgaard/vue-2-boilerplate#readme",
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/petervmeijgaard/vue-2-boilerplate.git"
},
"keywords": [
"Vue",
"Next",
"Boilerplate",
"Webpack",
"Lint",
"Medium",
"Large",
"SPA",
"Single",
"Page",
"Application"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"license": "MIT"
}