-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
{
"name": "drifter",
"version": "0.1.0",
"private": true,
"scripts": {
"run-once-after-npm-install": "npx ts-patch install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "rm -rf prisma/migrations && npx prisma migrate reset -f && npx prisma generate && npx prisma migrate dev --name init",
"db:seed": "node --import tsx prisma/seeds/seed.ts",
"db:backup": "sqlite3 prisma/database/drifter.db .dump > prisma/database/backup.sql",
"db:restore": "rm prisma/database/drifter.db && sqlite3 prisma/database/drifter.db < prisma/database/backup.sql",
"db:studio": "npx prisma studio",
"extract:places": "rm -f prisma/data/get-places.js && tsc prisma/data/get-places.ts && node prisma/data/get-places.js"
},
"dependencies": {
"@1nf053c/mapbox-map": "^0.1.7",
"@arwes/react": "^1.0.0-next.24072801",
"@prisma/client": "^5.17.0",
"axios": "^1.7.2",
"compromise": "^14.14.0",
"fuse.js": "^7.0.0",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"swr": "^2.2.5",
"ts-runtime-checks": "^0.6.1"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"prisma": "^5.17.0",
"ts-patch": "^3.2.1",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}