This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "electron-webpack-quick-start",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "sudo node ./node_modules/electron-webpack/out/dev/dev-runner.js",
"win": "node ./node_modules/electron-webpack/out/dev/dev-runner.js",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"lint": "eslint src/ --fix",
"format": "prettier --write src/",
"format-ci": "prettier --check src/",
"lint-ci": "eslint src/"
},
"dependencies": {
"@emotion/core": "^10.0.34",
"@types/react-transition-group": "^4.4.0",
"axios": "^0.19.2",
"bootstrap": "^4.5.2",
"electron": "8.5.2",
"fs": "^0.0.1-security",
"jquery": "^3.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-perfect-scrollbar": "^1.5.8",
"react-spinners": "^0.9.0",
"react-transition-group": "1.x",
"reactstrap": "^8.5.1",
"request": "^2.88.2",
"simplebar-react": "^2.2.1",
"source-map-support": "^0.5.16",
"toml": "^3.0.0",
"tomlify": "^0.2.2",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@babel/preset-react": "^7.10.4",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.8.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"prettier": "^2.0.5",
"webpack": "~4.42.1"
}
}