-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.92 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
{
"name": "wgms-oms-app",
"version": "0.0.0",
"scripts": {
"dev:app": "uni -p app",
"dev:custom": "uni -p",
"dev:h5": "uni",
"lint": "eslint --ext .ts --ext .vue src/",
"lint-fix": "eslint --fix --ext .ts --ext .vue src/",
"lint-staged": "lint-staged",
"dev:h5:ssr": "uni --ssr",
"dev:mp-alipay": "uni -p mp-alipay",
"dev:mp-baidu": "uni -p mp-baidu",
"dev:mp-kuaishou": "uni -p mp-kuaishou",
"dev:mp-lark": "uni -p mp-lark",
"dev:mp-qq": "uni -p mp-qq",
"dev:mp-toutiao": "uni -p mp-toutiao",
"dev:mp-weixin": "uni -p mp-weixin",
"dev:quickapp-webview": "uni -p quickapp-webview",
"dev:quickapp-webview-huawei": "uni -p quickapp-webview-huawei",
"dev:quickapp-webview-union": "uni -p quickapp-webview-union",
"build:app": "uni build -p app",
"build:custom": "uni build -p",
"build:h5": "uni build",
"build:h5:ssr": "uni build --ssr",
"build:mp-alipay": "uni build -p mp-alipay",
"build:mp-baidu": "uni build -p mp-baidu",
"build:mp-kuaishou": "uni build -p mp-kuaishou",
"build:mp-lark": "uni build -p mp-lark",
"build:mp-qq": "uni build -p mp-qq",
"build:mp-toutiao": "uni build -p mp-toutiao",
"build:mp-weixin": "uni build -p mp-weixin",
"build:quickapp-webview": "uni build -p quickapp-webview",
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
"prepare": "husky install"
},
"dependencies": {
"@dcloudio/uni-app": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-app-plus": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-components": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-h5": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-mp-alipay": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-mp-baidu": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-mp-kuaishou": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-mp-lark": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-mp-qq": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-mp-toutiao": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-mp-weixin": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-quickapp-webview": "3.0.0-alpha-3040820220424001",
"@qiun/ucharts": "^2.4.3-20220505",
"@turf/turf": "^6.5.0",
"@types/node": "^18.6.1",
"@ued_fpi/uview-ui": "^1.9.15",
"js-md5": "^0.7.3",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"pinia": "^2.0.17",
"unplugin-auto-import": "0.7.2",
"vue": "^3.2.37",
"vue-i18n": "^9.1.9"
},
"devDependencies": {
"@dcloudio/types": "^3.0.7",
"@dcloudio/uni-automator": "3.0.0-alpha-3040820220424001",
"@dcloudio/uni-cli-shared": "3.0.0-alpha-3040820220424001",
"@dcloudio/vite-plugin-uni": "3.0.0-alpha-3040820220424001",
"@types/uni-app": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^7.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"node-sass": "^7.0.1",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"typescript": "^4.7.4",
"unplugin-vue-components": "^0.22.4",
"vite": "^2.9.14"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint --fix",
"git add ."
]
}
}