-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 939 Bytes
/
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
{
"name": "test-storybook",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"dependencies": {
"vue": "^2.5.16"
},
"devDependencies": {
"@storybook/vue": "^3.4.7",
"@vue/cli-plugin-babel": "^3.0.0-rc.1",
"@vue/cli-plugin-eslint": "^3.0.0-rc.1",
"@vue/cli-service": "^3.0.0-rc.1",
"@vue/eslint-config-prettier": "^3.0.0-rc.1",
"babel-core": "^7.0.0-bridge.0",
"lint-staged": "^6.0.0",
"vue-template-compiler": "^2.5.16"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}