-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"name": "splithappens",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"start": "tsx watch Server/src/server.ts"
},
"dependencies": {
"@supabase/supabase-js": "^2.57.4",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"pg": "^8.16.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.1",
"sass": "^1.93.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"@types/pg": "^8.15.5",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/testing-library__user-event": "^4.1.1",
"@vitejs/plugin-react": "^5.0.3",
"@vitejs/plugin-react-swc": "^4.0.1",
"@vitest/ui": "^3.2.4",
"eslint": "^9.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"jsdom": "^27.0.0",
"tsx": "^4.20.5",
"typescript": "~5.8.3",
"typescript-eslint": "^8.43.0",
"vite": "^7.1.6",
"vitest": "^3.2.4"
}
}