-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.1 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.1 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
{
"name": "invite-code-client",
"private": true,
"version": "0.1.0",
"description": "Client for Invite Code system",
"author": "North Sky",
"main": "electron/main.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder",
"test": "vitest",
"lint": "eslint .",
"format": "prettier --write ."
},
"build": {
"appId": "com.northsky.invitecodeclient",
"productName": "InviteCodeClient",
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"output": "release"
},
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
},
"dependencies": {
"axios": "1.13.5",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^1.14.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.0.10",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.14",
"concurrently": "^9.2.1",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"jsdom": "^27.4.0",
"msw": "^2.12.7",
"postcss": "^8.4.27",
"prettier": "^3.8.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"typescript-eslint": "^8.54.0",
"vite": "7.1.11",
"vitest": "^4.0.18",
"wait-on": "^9.0.3"
}
}