-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
{
"name": "electron-cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npm-run-all --parallel install-app install-client",
"install-app": "cd app && yarn",
"install-client": "cd client && yarn",
"dev:render": "cross-env NODE_ENV=development node ./internals/scripts/devRender.js",
"dev:main": "npm-run-all --parallel watch:main build:main",
"build:main": "node ./internals/scripts/devMain.js",
"watch:main": "nodemon --watch ./app/build/main.js --exec npm run start:main",
"start:main": "cd ./app && npm run dev",
"package": "node ./internals/package/build.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.1",
"cross-env": "^7.0.3",
"electron-builder": "^22.10.5",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"gulp": "^4.0.2",
"lodash": "^4.17.21",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.4",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.1.0",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-node-externals": "^2.5.2"
}
}