-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.34 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "components-lib-storybook",
"version": "0.1.0",
"description": "A UI components Libray with Vue2",
"main": "dist/components-lib-storybook.cjs.js",
"module": "dist/es/index.js",
"unpkg": "dist/components-lib-storybook.min.js",
"repository": "https://github.com/WeijianXu/components-lib-storybook.git",
"author": "WeijianXu",
"license": "MIT",
"typings": "types/index.d.ts",
"files": [
"dist",
"src",
"types"
],
"scripts": {
"build:dev": "webpack --config tool/webpack.dev.config.js",
"build:toJs": "node tool/es-entries.js && rollup --config tool/rollup.config.js",
"prepublishOnly": "npm run build:toJs",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest"
},
"dependencies": {
"lodash": "^4.17.21",
"view-design": "~4.7.0",
"vue": "^2.6.10",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.2.0"
},
"peerDependencies": {
"view-design": ">=4.7.0",
"vue": ">=2.6.10",
"vue-property-decorator": ">=8.4.2",
"vue-router": ">=3.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@mdx-js/vue-loader": "^1.6.22",
"@netsells/storybook-router": "^1.2.1",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-a11y": "^6.3.12",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-storysource": "^6.3.12",
"@storybook/vue": "^6.4.19",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.169",
"@typescript-eslint/parser": "^4.20.0",
"@vue/test-utils": "^1.1.4",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"css-loader": "^5.2.0",
"eslint": "^7.23.0",
"eslint-plugin-vue": "^7.8.0",
"extract-text-webpack-plugin": "^3.0.2",
"husky": "^7.0.4",
"jest": "^26.6.3",
"jest-environment-jsdom-fifteen": "^1.0.2",
"less": "^2.7.3",
"less-loader": "5.0.0",
"lint-staged": "^10.5.4",
"node-sass": "^4.12.0",
"rollup": "^2.44.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-smart-asset": "^2.1.1",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-vue": "^5.1.9",
"sass-loader": "^8.0.2",
"sourcemap-codec": "^1.4.8",
"ts-jest": "^26.5.5",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "~3.8.3",
"url-loader": "^4.1.1",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.6",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.46.0",
"webpack-cli": "^4.6.0",
"webpack-merge": "^5.7.3"
},
"engines": {
"node": ">=10.17.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"eslint --fix --ext .js,.ts,.jsx,.tsx,.vue src",
"git add"
]
}
}