-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.37 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
{
"name": "caesar-electron-vite-antd",
"license": "",
"copyright": "All Rights Reserved",
"version": "0.0.1",
"private": true,
"author": {
"email": "[email protected]",
"name": "Magento Electron"
},
"main": "dist/main/index.js",
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"workspaces": [
"workspaces/*"
],
"scripts": {
"dev": "cross-env NODE_ENV=development concurrently \"yarn dev:vite\" \"yarn dev:electron\"",
"dev:vite": "vite",
"dev:electron": "yarn build:electron && electron .",
"build": "cross-env NODE_ENV=production yarn build:vite && yarn build:electron",
"build:vite": "tsc && vite build",
"build:electron": "tsc -p electron",
"clean": "rm -rf ./build && rm -rf ./release",
"prepare": "husky install",
"release": "yarn build && electron-builder --dir",
"release:win": "yarn build && electron-builder --win",
"release:mac": "yarn build && electron-builder --mac",
"release:linux": "yarn build && electron-builder --linux"
},
"dependencies": {
"@apollo/client": "^3.7.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"clsx": "^1.2.1",
"cross-env": "^7.0.3",
"electron-is-dev": "^2.0.0",
"lodash": "^4.17.21",
"nookies": "^2.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.5"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-react": "^2.2.0",
"concurrently": "^7.6.0",
"cz-customizable": "^7.0.0",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"typescript": "^4.6.4",
"vite": "^3.2.3"
}
}