-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 4.18 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "electron-vite-react-project-template",
"version": "1.0.0",
"description": "electron-vite-react-project-template",
"license": "ISC",
"author": "YJD",
"main": "./dist/main/index.js",
"scripts": {
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm-run-all -p typecheck:node typecheck:web",
"preview": "electron-vite preview --config config/electron.vite.config.ts",
"dev": "electron-vite --config config/electron.vite.config.ts",
"dev-w": "electron-vite -w --config config/electron.vite.config.ts",
"dist": "electron-vite build --config config/electron.vite.config.ts",
"build:win": "npm run dist && electron-builder --win",
"build:mac": "npm run dist && electron-builder --mac",
"build:linux": "npm run dist && electron-builder --linux",
"preinstall": "[ -f ./scripts/npm-hooks/preinstall.js ] && node ./scripts/npm-hooks/preinstall.js || true",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint --ext .ts,.tsx,.js src",
"lint-fix": "eslint --ext .ts,.tsx,.js src --fix",
"test": "jest --passWithNoTests",
"check": "npm-run-all -p check-ts lint",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"@ant-design/icons": "~5.0.1",
"@electron-toolkit/preload": "~1.0.3",
"@electron-toolkit/utils": "~1.0.2",
"@rematch/core": "~2.2.0",
"@rematch/immer": "~2.1.3",
"@rematch/loading": "~2.1.2",
"ahooks": "~3.7.6",
"antd": "~4.24.8",
"axios": "~1.3.5",
"classnames": "~2.3.2",
"dayjs": "~1.11.7",
"electron-better-ipc": "~2.0.1",
"electron-log": "~4.4.8",
"electron-store": "~8.1.0",
"electron-updater": "~5.3.0",
"history": "~5.3.0",
"immer": "~9.0.21",
"keytar": "~7.8.0",
"less": "~4.1.3",
"lodash-es": "~4.17.21",
"normalize.css": "~8.0.1",
"qs": "~6.11.1",
"react": "16.14.0",
"react-beautiful-dnd": "~13.1.1",
"react-dom": "16.14.0",
"react-intl": "~6.3.2",
"react-redux": "~8.0.5",
"react-resizable": "~3.0.5",
"react-router": "~6.10.0",
"react-router-dom": "~6.10.0"
},
"devDependencies": {
"@commitlint/cli": "~17.6.1",
"@commitlint/config-conventional": "~17.6.1",
"@commitlint/cz-commitlint": "~17.5.0",
"@electron-toolkit/tsconfig": "~1.0.1",
"@trivago/prettier-plugin-sort-imports": "~4.1.1",
"@types/jest": "~29.5.0",
"@types/lodash-es": "~4.17.7",
"@types/node": "~18.15.11",
"@types/react": "16.14.35",
"@types/react-beautiful-dnd": "~13.1.4",
"@types/react-dom": "16.9.8",
"@types/react-resizable": "~3.0.4",
"@typescript-eslint/eslint-plugin": "~5.59.0",
"@typescript-eslint/parser": "~5.59.0",
"@vitejs/plugin-legacy": "~4.0.2",
"@vitejs/plugin-react": "~4.0.0",
"commitizen": "~4.3.0",
"cz-git": "~1.6.1",
"electron": "~22.3.4",
"electron-builder": "~23.6.0",
"electron-builder-notarize": "~1.5.1",
"electron-devtools-assembler": "~1.2.0",
"electron-vite": "~1.0.21",
"eslint": "~8.38.0",
"eslint-config-prettier": "~8.8.0",
"eslint-import-resolver-alias": "~1.1.2",
"eslint-import-resolver-typescript": "~3.5.5",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react": "~7.32.2",
"eslint-plugin-react-hooks": "~4.6.0",
"husky": "~8.0.3",
"jest": "~29.5.0",
"jest-environment-jsdom": "~29.5.0",
"lint-staged": "~13.2.1",
"npm-run-all": "~4.1.5",
"postcss-less": "~6.0.0",
"postcss-nesting": "~11.2.2",
"postcss-preset-env": "~8.3.2",
"prettier": "~2.8.7",
"prettier-plugin-packagejson": "~2.4.3",
"react-dev-inspector": "~1.8.4",
"stylelint": "~15.5.0",
"stylelint-order": "~6.0.3",
"terser": "~5.16.9",
"ts-jest": "~29.1.0",
"ts-node": "~10.9.1",
"typescript": "~4.9.3",
"vite": "~4.2.0",
"vite-plugin-importer": "~0.2.5",
"vite-plugin-inspect": "~0.7.23"
},
"engines": {
"node": ">=14.18",
"npm": ">=6.14.15"
},
"show_version": "1.0.0.0.0"
}