forked from nidkil/vuetify-with-storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.09 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
89
90
91
{
"name": "vuetify-with-storybook",
"version": "0.2.0",
"description": "Setting up Storybook with Vuetify and Vue CLI 3 the correct way",
"keywords": [
"vue",
"vue-2",
"vuejs",
"vuejs-2",
"vue-cli-3",
"vuetify",
"vuetifyjs",
"storybook",
"visual-testing",
"vue-components",
"component-development"
],
"author": "nidkil <info@nidkil.com> (https://nidkil.me)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nidkil/vuetify-with-storybook.git"
},
"homepage": "https://github.com/nidkil/vuetify-with-storybook#readme",
"bugs": "https://github.com/nidkil/vuetify-with-storybook/issues",
"private": true,
"scripts": {
"cl": "commitlint",
"cl:last": "commitlint --edit",
"cz:commit": "git cz",
"cz:retry": "git cz --retry",
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --no-fix --format codeframe src tests ./config/storybook",
"lint:fix": "vue-cli-service lint --fix --format codeframe src tests ./config/storybook",
"lint:error-only": "vue-cli-service lint --quiet --format codeframe src tests ./config/storybook",
"storybook:build": "SET STORYBOOK=true & vue-cli-service storybook:build -c config/storybook",
"storybook:serve": "SET STORYBOOK=true & vue-cli-service storybook:serve -p 6006 -c config/storybook",
"test:unit": "vue-cli-service test:unit --verbose",
"readme:toc": "markdown-toc README.md -i --maxdepth=2 --bullets=-",
"release": "nodenv --env ./.env.local --exec release-it --verbose",
"chk-pkg-upd": "ncu",
"webpack:inspect": "SET STORYBOOK=true & vue inspect > webpack.config.inspect.js"
},
"dependencies": {
"vue": "^2.5.21",
"vue-router": "^3.0.1",
"vue-types": "^1.3.4",
"vuetify": "^1.3.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@mdi/font": "^3.3.92",
"@storybook/addon-actions": "^4.1.0",
"@storybook/addon-backgrounds": "^4.1.7",
"@storybook/addon-links": "^4.1.0",
"@storybook/addon-storysource": "^4.1.7",
"@storybook/addon-viewport": "^4.1.7",
"@vue/cli-plugin-babel": "^3.0.4",
"@vue/cli-plugin-eslint": "^3.0.4",
"@vue/cli-plugin-unit-jest": "^3.0.4",
"@vue/cli-service": "^3.0.4",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"css-loader": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"markdown-toc": "^1.2.0",
"release-it": "^10.0.0",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-storybook": "^0.5.0",
"vue-cli-plugin-vuetify": "^0.4.6",
"vue-template-compiler": "^2.5.21",
"vuetify-loader": "^1.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}