This repository has been archived by the owner on Jun 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
89 lines (89 loc) · 2.26 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
{
"name": "taskmanager",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.5.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-redux": "^7.1.16",
"@types/redux-logger": "^3.0.8",
"antd": "^4.14.0",
"classnames": "^2.2.6",
"dayjs": "^1.10.4",
"echarts": "^5.0.2",
"echarts-for-react": "^3.0.1",
"electron": "^11.2.1",
"kill-process": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-base-table": "^1.12.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-scripts": "^4.0.3",
"react-texty": "^0.6.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sass": "^1.32.8",
"systeminformation": "^5.6.5"
},
"main": "public/electron.js",
"homepage": "./",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"electron-pack": "electron-builder"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"babel-plugin-import": "^1.13.3",
"canvas": "^2.7.0",
"concurrently": "^6.0.0",
"customize-cra": "^1.0.0",
"electron-builder": "^22.10.5",
"rc-util": "^5.8.1",
"react-app-rewired": "^2.1.8",
"redux-logger": "^3.0.6",
"typescript": "^4.2.3",
"wait-on": "^5.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"author": {
"name": "Yuxin Wang"
},
"build": {
"appId": "me.yuxinwang.taskmanager",
"productName": "TaskManager",
"copyright": "Copyright © 2019-2020 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}