-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.94 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
{
"name": "i18n-sync",
"version": "0.0.4",
"private": true,
"scripts": {
"audit-fix": " yarn-audit-fix --force",
"build": "max build",
"build:win": "max build electron --win",
"dev": "rm -rf ./src/.umi && yarn electron:dev",
"electron:build:linux": "max build electron --linux",
"electron:build:mac": "max build electron --mac",
"electron:dev": "max dev electron",
"electron:dir": "max build electron --dir",
"electron:init": "max electron init",
"format": "prettier --write --ignore-path .gitignore .",
"format:check": "prettier --check --ignore-path .gitignore .",
"g": "max g",
"postinstall": "max setup",
"lint": "prettier --check --ignore-path .gitignore .",
"lint:fix": "prettier --write --ignore-path .gitignore .",
"prepare": "husky",
"pretty": "prettier --write --ignore-path .gitignore .",
"rebuild-deps": "electron-builder install-app-deps",
"start": "npm run dev",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=yes jest --passWithNoTests",
"test:coverage": "cross-env TS_NODE_TRANSPILE_ONLY=yes jest --passWithNoTests --coverage",
"test:watch": "cross-env TS_NODE_TRANSPILE_ONLY=yes jest --passWithNoTests --watch",
"upd": "yarn upgrade-interactive --latest"
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write",
"*.{js,jsx}": "prettier --write"
},
"resolutions": {
"app-builder-lib": "25.1.8",
"axios": "^1.7.8",
"cross-spawn": "7.0.6",
"immer": "10.1.1",
"micromatch": "4.0.8",
"minimatch": "9.0.5",
"path-to-regexp": "1.9.0",
"semver": "7.6.3",
"vite": "6.0.1"
},
"dependencies": {
"@ant-design/pro-components": "^2.8.2",
"@umijs/max": "^4.4.2",
"ahooks": "^3.8.4",
"antd": "^5.22.6",
"electron": "^33.2.1",
"electron-store": "^8.1.0",
"electron-window-state": "^5.0.3",
"pinokiod": "^3.0.37",
"pinokiojs": "^0.0.9",
"react": "^18.3.1"
},
"devDependencies": {
"@liangskyli/umijs-plugin-electron": "^0.4.0",
"@testing-library/jest-dom": "^5",
"@testing-library/react": "^14",
"@types/jest": "^29",
"@types/kill-port": "^2.0.3",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/wait-on": "^5.3.4",
"cross-env": "^7",
"electron-builder": "^25.1.8",
"eslint-plugin-valtio": "^0.8.0",
"fs-extra": "^11.2.0",
"glob": "7.2.3",
"husky": "^9.1.7",
"jest": "^29",
"jest-environment-jsdom": "^29",
"kill-port": "^2.0.1",
"lint-staged": "^15.2.11",
"portfinder-cp": "^1.0.34",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"python-shell": "^5.0.0",
"tailwindcss": "^3.4.17",
"tree-kill": "^1.2.2",
"typescript": "^5.7.2",
"wait-on": "^8.0.1",
"webpack": "^5.97.1",
"yarn-audit-fix": "^10.1.1"
},
"engines": {
"node": ">=18",
"yarn": ">=1.22.15"
}
}