-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "mapping-flavor",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"postinstall": "prisma generate",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"check-all": "npm run type-check && npm run lint && npm run format:check",
"db:seed": "tsx prisma/seed.ts",
"db:migrate": "prisma migrate dev",
"db:reset": "prisma migrate reset",
"db:studio": "prisma studio"
},
"dependencies": {
"@prisma/client": "^6.10.1",
"@reduxjs/toolkit": "^2.8.2",
"@types/pg": "^8.15.4",
"@types/react-map-gl": "^6.1.7",
"clsx": "^2.1.1",
"mapbox-gl": "^3.13.0",
"next": "^16.1.3",
"pg": "^8.13.1",
"prisma": "^6.10.1",
"react": "^18",
"react-dom": "^18",
"react-map-gl": "^7.1.9",
"react-redux": "^9.2.0",
"tailwind-merge": "^3.3.0"
},
"devDependencies": {
"@types/mapbox-gl": "^2.7.21",
"@types/node": "^20",
"@types/pg": "^8.11.12",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.3.0",
"tsx": "^4.20.3",
"typescript": "^5"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}