-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "@fe6/water-use",
"version": "1.10.5",
"main": "src/index.ts",
"repository": "https://github.com/fe6/water-use.git",
"author": "iq9891 <649076408@qq.com>",
"license": "MIT",
"files": [
"src",
"scripts"
],
"scripts": {
"start": "vite --config build/vite.config.ts",
"lint:js": "eslint './src/**/*.{js,ts,tsx,vue,json}'",
"lint:jsfix": "nr lint:js --fix",
"lint:css": "stylelint ./src/**/*.{scss,vue}",
"lint:cssfix": "nr lint:css --fix",
"lint:fix": "nr lint:jsfix && nr lint:cssfix",
"lint": "nr lint:js && nr lint:css",
"postinstall": "node scripts/postinstall",
"cz": "cz",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons-vue": "^6.0.1",
"@fe6/norm": "^3.2.0",
"@fe6/shared": "^0.9.1",
"@fe6/water-pro": "^3.7.3",
"@types/lodash-es": "^4.17.4",
"@types/node": "^15.12.5",
"@vitejs/plugin-vue": "^1.2.4",
"@vitejs/plugin-vue-jsx": "^1.1.6",
"@vue/compiler-sfc": "^3.1.2",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"em-cookie": "^1.1.1",
"husky": "^6.0.0",
"less": "^4.1.1",
"lodash-es": "^4.17.21",
"sass": "^1.35.1",
"typescript": "^4.3.4",
"vite": "^2.3.8",
"vite-plugin-compression": "^0.2.5",
"vite-plugin-html": "^2.0.7",
"vite-plugin-imagemin": "^0.3.2",
"vite-plugin-md": "^0.6.7",
"vite-plugin-style-import": "^1.0.1",
"vue": "^3.1.2",
"vue-router": "^4.0.10",
"vuex": "^4.0.2",
"yargs": "^17.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@fe6/norm/src/.cz-configrc.js"
}
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
}
}