-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.9 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
{
"name": "electronreactmobxtemplate",
"description": "electronreactmobxtemplate build dependencies",
"version": "1.0.0",
"scripts": {
"postinstall": "ts-node -P script/tsconfig.json script/post-install.ts",
"start": "ts-node script/start.ts",
"package": "ts-node script/package.ts",
"build:dev": "yarn compile:dev && cross-env NODE_ENV=development ts-node script/build.ts",
"build:prod": "yarn compile:prod && cross-env NODE_ENV=production ts-node script/build.ts",
"compile:dev": "cross-env NODE_ENV=development parallel-webpack --config app/webpack.development.ts",
"compile:prod": "cross-env NODE_ENV=production parallel-webpack --config app/webpack.production.ts"
},
"devDependencies": {
"@types/electron-devtools-installer": "^2.2.0",
"@types/electron-winstaller": "4.0.0",
"@types/express": "4.17.8",
"@types/fs-extra": "9.0.10",
"@types/html-webpack-plugin": "3.2.4",
"@types/mini-css-extract-plugin": "1.2.2",
"@types/node": "14.14.32",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.1",
"@types/webpack": "4.41.26",
"@types/webpack-dev-middleware": "4.1.0",
"@types/webpack-hot-middleware": "2.25.3",
"@types/webpack-merge": "4.1.5",
"electron": "12.0.0",
"electron-packager": "15.2.0",
"electron-winstaller": "5.0.0",
"mini-css-extract-plugin": "1.4.1"
},
"dependencies": {
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.1",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^4.5.2",
"node-sass": "^5.0.0",
"parallel-webpack": "^2.6.0",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-node": "^9.1.1",
"typescript": "^3.9.9",
"webpack": "4.46.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.7.3"
}
}