-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-electron",
"version": "1.0.0",
"description": "",
"main": "target/app/index.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently -n \"Webpack,TypeScript\" -c \"cyan.bold,blue.bold\" \"webpack -w\" \"tsc --build -v --pretty --watch --preserveWatchOutput\" -k",
"app": "electron .",
"release-mac": "NODE_ENV=production electron-builder",
"release-win": "NODE_ENV=production electron-builder --win --x64",
"start": "webpack serve"
},
"build": {
"appId": "com.soda.transfer",
"files": [
"target/**/*",
"node_modules/**/*",
"package.json"
],
"publish": null
},
"keywords": [],
"author": "soda",
"license": "MIT",
"devDependencies": {
"@ant-design/icons": "^4.3.0",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-numeric-separator": "^7.12.7",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/copy-webpack-plugin": "^6.3.0",
"@types/cross-spawn": "^6.0.2",
"@types/electron-devtools-installer": "^2.2.0",
"@types/node": "^14.14.12",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/redux-actions": "^2.6.1",
"@types/terser-webpack-plugin": "^5.0.2",
"@types/uuid": "^8.3.0",
"@types/webpack": "^4.41.25",
"@types/webpack-dev-server": "^3.11.1",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"electron": "^11.0.4",
"electron-builder": "^22.9.1",
"electron-devtools-installer": "^3.1.1",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.0",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"null-loader": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"style-loader": "^2.0.0",
"styled-jsx": "^3.3.2",
"terser-webpack-plugin": "^5.0.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"antd": "^4.9.2",
"connected-react-router": "^6.8.0",
"cross-spawn": "^7.0.3",
"history": "^5.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3",
"uuid": "^8.3.2",
"ws": "^7.4.2"
}
}