-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.12 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
{
"name": "electron-starter",
"version": "0.0.1",
"description": "Electron starter",
"license": "MIT",
"scripts": {
"start": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"dist:all": "yarn run dist --x64 -wml",
"dist:win": "yarn run dist --x64 -w",
"dist:mac": "yarn run dist -m",
"dist:linux": "yarn run dist -l"
},
"dependencies": {
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"electron": "12.0.2",
"electron-builder": "22.10.5",
"electron-webpack": "^2.8.2",
"electron-webpack-eslint": "^6.0.0",
"electron-webpack-ts": "^4.0.1",
"eslint-plugin-react": "^7.23.1",
"node-sass": "^4.13.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "4.13.0",
"sass-loader": "^8.0.2",
"typescript": "^4.2.3",
"webpack": "^4.42.1"
}
}