-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.23 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
{
"name": "i18n-sync",
"version": "0.0.4",
"private": true,
"scripts": {
"build": "max build",
"dev": "yarn electron:dev",
"electron:build:linux": "max build electron --linux",
"electron:build:mac": "max build electron --mac",
"electron:build:win": "max build electron --win",
"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"
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write",
"*.{js,jsx}": "prettier --write"
},
"resolutions": {
"immer": "9.0.12"
},
"dependencies": {
"@ant-design/pro-components": "^2.7.19",
"@umijs/max": "^4.3.27",
"ahooks": "^3.8.1",
"antd": "^5.21.4",
"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/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.5",
"cross-env": "^7",
"electron": "^33.0.0",
"electron-builder": "^23.6.0",
"eslint-plugin-valtio": "^0.6.4",
"fs-extra": "^11.2.0",
"glob": "7.2.3",
"husky": "^9",
"jest": "^29",
"jest-environment-jsdom": "^29",
"lint-staged": "^13",
"prettier": "^2",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.3",
"tailwindcss": "^3.4.13",
"typescript": "^5",
"unplugin-auto-import": "^0.18.3",
"webpack": "^5.95.0"
}
}