-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
78 lines (78 loc) · 2.55 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
{
"name": "electron-react-template",
"version": "0.0.1",
"author": "sky <https://github.com/umbrella22>",
"description": "An electron-react project",
"license": "MIT",
"main": "./dist/electron/main/main.js",
"scripts": {
"dev": "esno .electron-vite/dev-runner.ts",
"build": "cross-env BUILD_TARGET=clean esno .electron-vite/build.ts",
"build:clean": "cross-env BUILD_TARGET=onlyClean esno .electron-vite/build.ts",
"pack:resources": "esno .electron-vite/hot-updater.ts",
"dep:upgrade": "yarn upgrade-interactive --latest",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:style": "stylelint \"**/*.scss\""
},
"dependencies": {
"axios": "^1.3.0",
"electron-updater": "^5.0.5"
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@types/adm-zip": "^0.5.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.11.15",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"@vitejs/plugin-react-swc": "^3.0.1",
"adm-zip": "^0.5.9",
"antd": "^5.1.7",
"cfonts": "^3.1.1",
"chalk": "5.2.0",
"cross-env": "^7.0.3",
"del": "^7.0.0",
"electron": "^22.1.0",
"electron-builder": "^23.6.0",
"electron-devtools-vendor": "^1.2.0",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"esno": "^0.16.3",
"extract-zip": "^2.0.1",
"fs-extra": "^11.1.0",
"inquirer": "^9.1.4",
"javascript-obfuscator": "^4.0.0",
"listr2": "^5.0.7",
"portfinder": "^1.0.32",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.8.0",
"react-router-dom": "^6.11.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-obfuscator": "^0.2.2",
"sass": "^1.58.0",
"semver": "^7.5.0",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-prettier": "^3.0.0",
"tslib": "^2.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.4"
}
}