-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.74 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
{
"name": "ocean-command",
"version": "0.1.0",
"private": true,
"description": "Offshore Operations Intelligence Platform",
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:seed": "tsx prisma/seed/index.ts",
"db:reset": "prisma migrate reset --force",
"db:studio": "prisma studio",
"format": "prettier --write ."
},
"prisma": {
"seed": "tsx prisma/seed/index.ts"
},
"dependencies": {
"@node-rs/argon2": "^2.0.2",
"@prisma/adapter-pg": "^7.9.0",
"@prisma/client": "^7.9.0",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"better-auth": "^1.6.25",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"leaflet": "^1.9.4",
"lucide-react": "^1.27.0",
"next": "^16.2.12",
"pg": "^8.22.0",
"pino": "^10.3.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-leaflet": "^5.0.0",
"recharts": "^3.10.1",
"server-only": "^0.0.1",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/leaflet": "^1.9.21",
"@types/node": "^26.1.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.4.2",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.12",
"pino-pretty": "^13.1.3",
"prettier": "^3.9.6",
"prisma": "^7.9.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
}
}