-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.07 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
96
{
"name": "crawler-client",
"productName": "自媒体RPA",
"version": "1.0.1",
"author": "Kevin",
"private": true,
"main": "./src/main/main.js",
"homepage": ".",
"description": "Electron Basic Program",
"dependencies": {
"@ant-design/icons": "^5.3.6",
"@ant-design/pro-components": "^2.7.10",
"@antv/x6": "^2.18.1",
"@antv/x6-plugin-clipboard": "^2.1.6",
"@antv/x6-plugin-history": "^2.2.4",
"@antv/x6-plugin-keyboard": "^2.2.3",
"@antv/x6-plugin-selection": "^2.2.2",
"@antv/x6-plugin-snapline": "^2.1.7",
"@antv/x6-plugin-stencil": "^2.1.5",
"@antv/x6-plugin-transform": "^2.1.8",
"@craco/craco": "^7.1.0",
"@reduxjs/toolkit": "^2.2.6",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"antd": "^5.16.2",
"craco-less": "^3.0.1",
"electron-log": "^5.1.2",
"electron-updater": "^6.1.8",
"ini": "^4.1.3",
"lodash": "^4.17.21",
"mysql2": "^3.10.3",
"node-cmd": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.3.0",
"sequelize": "^6.37.3",
"uuid": "^10.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"dumi": "cross-env APP_ROOT=dumi dumi dev",
"dumi-build": "cross-env APP_ROOT=dumi dumi build",
"start:web": "cross-env REACT_APP_ENVIRONMENT=development craco start",
"start": "electron . dev",
"start:test": "electron . test",
"startAll": "concurrently \"npm run start:web\" \"npm run start\"",
"startApp": "concurrently \"cross-env BROWSER=none npm run start:web\" \"wait-on http://localhost:1819 && electron . dev\"",
"test": "electron . test",
"build:test:web": "env-cmd -f .env.test craco build",
"build:web": "cross-env REACT_APP_ENVIRONMENT=production craco build",
"build:test": "cross-env NODE_ENV=test electron-builder",
"build": "electron-builder --win",
"build:clean": "rimraf release && electron-builder --win",
"build:deb": "electron-builder --linux deb tar.xz",
"build:deb:arm64": "electron-builder --linux deb --arm64",
"build:linux": "electron-builder --linux",
"build:linux:arm64": "electron-builder --linux --arm64",
"build:appimage:arm64": "electron-builder --linux appimage --arm64",
"build:dir": "electron-builder --dir",
"postinstall": "electron-builder install-app-deps"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-plugin-import": "^1.13.8",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^30.0.0",
"electron-builder": "^22.14.13",
"terser-webpack-plugin": "^5.3.10",
"wait-on": "^7.2.0"
},
"license": "MIT"
}