-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.17 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
{
"name": "mastergo-plugin",
"version": "0.0.0",
"scripts": {
"dev": "yarn dev:ui & yarn dev:main & node ./server.js",
"dev:ui": "cross-env TARGET=ui NODE_ENV=development vite build --mode development -w",
"dev:main": "cross-env TARGET=main NODE_ENV=development vite build --mode development -w",
"build": "yarn build:ui && yarn build:main && rm -rf ./dist/assets",
"build:ui": "cross-env TARGET=ui vite build",
"build:main": "cross-env TARGET=main vite build"
},
"dependencies": {
"@mastergo/plugin-typings": "^1.0.0",
"date-and-time": "^2.4.3",
"node-xlsx": "^0.21.0",
"qiniu": "^7.8.0",
"qiniu-js": "^3.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"request": "^2.88.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@types/babel__core": "^7.1.18",
"@types/node": "^18.15.11",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@vitejs/plugin-react": "^1.2.0",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"typescript": "^4.5.5",
"vite": "^2.8.4",
"vite-plugin-html": "^3.0.6",
"vite-plugin-singlefile": "^0.6.3"
},
"engines": {
"node": ">=14.14.0"
}
}