-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 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
{
"name": "iracing-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"db:init": "node scripts/init-db.js"
},
"dependencies": {
"@tanstack/react-query": "^5.84.1",
"@trpc/client": "^11.4.4",
"@trpc/next": "^10.45.0",
"@trpc/react-query": "11.4.4",
"@trpc/server": "^11.4.4",
"@types/better-sqlite3": "^7.6.13",
"@types/sql.js": "^1.4.9",
"better-auth": "^1.3.4",
"better-sqlite3": "^12.2.0",
"leaflet": "^1.9.4",
"lucide-react": "^0.263.1",
"next": "15.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^5.0.0",
"sql.js": "^1.10.3",
"superjson": "^2.2.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/leaflet": "^1.9.20",
"@types/node": "^18.19.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.21",
"eslint": "^8.54.0",
"eslint-config-next": "15.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2"
}
}