forked from didi/DoKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.53 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.53 KB
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
{
"name": "dokit-web",
"version": "0.0.0",
"description": "a web toolkit powered by DoKit",
"main": "index.js",
"scripts": {
"test": "jest test",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"dev": "lerna run dev --parallel",
"dev:playground": "run-p serve:playground dev",
"serve:playground": "node scripts/dev-playground.js",
"clean": "run-s clean:lerna clean:lock",
"clean:lerna": "lerna clean --yes",
"clean:lock": "run-s clean:lock-package clean:lock-subpackage",
"clean:lock-package": "rm -rf ./package-lock.json",
"clean:lock-subpackage": "rm -rf ./packages/**/package-lock.json"
},
"author": "caoenze",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@vue/compiler-sfc": "^3.0.11",
"cross-env": "^7.0.3",
"execa": "^5.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"less": "^4.1.1",
"npm-run-all": "^4.1.5",
"open": "^8.0.6",
"postcss": "^8.2.12",
"rollup": "^2.41.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"serve-handler": "^6.1.3"
},
"dependencies": {
"vant": "^3.1.0-beta.0",
"vue": "^3.2.21",
"@dokit/web-core": "file:packages/core",
"@dokit/web-utils": "file:packages/utils",
"@dokit/web": "file:packages/web",
"@dokit/web-independent": "file:packages/web-independent"
}
}