-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
31 lines (31 loc) · 1013 Bytes
/
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
{
"name": "super-h5",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"start": "npm-run-all --parallel dev:*",
"install-all": "npm-run-all --parallel install:*",
"dev:editor": "cd ./packages/super-editor && npm run start",
"dev:template": "cd ./packages/super-template && npm run build",
"dev:show": "cd ./packages/super-show && npm run start",
"dev:server": "cd ./packages/super-server && npm run start",
"install:editor": "cd ./packages/super-editor && npm i",
"install:template": "cd ./packages/super-template && npm i",
"install:show": "cd ./packages/super-show && npm i",
"install:server": "cd ./packages/super-server && npm i"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"core-js": "^3.18.1",
"express": "^4.17.1"
}
}