-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.05 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
{
"name": "thrive",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test": "tsx --test src/lib/recurrence.test.ts",
"lint": "next lint",
"lint:fix": "next lint --fix",
"check": "concurrently --kill-others-on-fail 'pnpm lint' 'tsc --noEmit'"
},
"pnpm": {
"overrides": {
"@auth/core": "0.41.1"
},
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver"
]
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.1",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "^5.2.1",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"@mui/material-nextjs": "^7.3.0",
"@mui/x-data-grid": "^8.10.0",
"@mui/x-date-pickers": "^8.23.0",
"@neondatabase/serverless": "^1.0.1",
"@react-google-maps/api": "^2.20.8",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.4",
"leaflet": "^1.9.4",
"next": "15.4.10",
"next-auth": "^4.24.11",
"notistack": "^3.0.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.62.0",
"react-leaflet": "^5.0.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.33.0",
"@netlify/functions": "^5.2.0",
"@netlify/plugin-nextjs": "^5.15.9",
"@next/eslint-plugin-next": "^15.4.6",
"@types/leaflet": "^1.9.21",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.0",
"drizzle-kit": "^0.31.4",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^60.0.0",
"knip": "^5.62.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "5.9.2",
"typescript-eslint": "^8.39.0"
}
}