-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.72 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
94
95
96
97
98
99
100
101
102
{
"name": "dw1-ui",
"private": true,
"version": "0.3.1",
"type": "module",
"main": "electron/main.cjs",
"engines": {
"node": ">=20.0.0 < 21.0.0"
},
"scripts": {
"dev": "vite",
"dev:docker": "vite --host",
"build": "tsc && vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install",
"lint-staged": "lint-staged",
"electron:start": "concurrently \"npm run dev\" \"sleep 1 && electron .\"",
"electron:build": "npm run build && electron-builder build --publish never"
},
"dependencies": {
"@tanstack/query-sync-storage-persister": "^4.29.5",
"@tanstack/react-query": "^4.29.5",
"@tanstack/react-query-devtools": "^4.29.6",
"@tanstack/react-query-persist-client": "^4.29.5",
"@textea/json-viewer": "^3.2.3",
"axios": "^1.4.0",
"bulma": "^0.9.4",
"i18next": "^22.4.15",
"i18next-browser-languagedetector": "^7.0.1",
"lodash": "^4.17.21",
"path": "^0.12.7",
"primeicons": "^6.0.1",
"primereact": "^9.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-hotkeys-hook": "^4.4.0",
"react-i18next": "^12.2.2",
"react-router-dom": "^6.11.1",
"web-vitals": "^3.3.1",
"zustand": "^4.3.8"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/lodash": "^4.14.194",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.3",
"concurrently": "^8.0.1",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"electron-is": "^3.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.3",
"jsdom": "^22.0.0",
"msw": "^1.2.1",
"node-fetch": "^3.3.1",
"prettier": "^2.8.8",
"typescript": "^5.0.2",
"vite": "^5.0.11",
"vitest": "^1.1.3"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"msw": {
"workerDirectory": "public"
},
"build": {
"appId": "com.gsdd",
"productName": "dw1-ui",
"files": [
"build/**/*",
"electron/main.cjs",
"package.json"
],
"extends": null,
"linux": {
"target": "AppImage"
},
"mac": {
"type": "distribution"
},
"win": {
"target": "portable"
}
}
}