-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 KB
/
package.json
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
{
"name": "ably-livesync-neon",
"scripts": {
"dev": "prisma generate && next dev",
"build": "prisma generate && next build",
"start": "next start",
"schema": "tsx schema.tsx",
"db": "npm run schema && prisma generate && prisma db push && npx prisma db execute --file ./prisma/migrations/trigger.sql --schema prisma/schema.prisma && prisma db seed",
"fmt": "prettier --write '**/*' --ignore-unknown"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@ably-labs/models": "0.0.3",
"@heroicons/react": "^2.0.18",
"@neondatabase/serverless": "^0.10.4",
"@prisma/adapter-neon": "^5.22.0",
"@prisma/client": "^5.22.0",
"ably": "^2.0.3",
"autoprefixer": "10.4.20",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"next": "15.1.2",
"postcss": "8.4.49",
"prettier": "^3.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-feather": "^2.0.10",
"tailwindcss": "3.4.15",
"typescript": "5.1.6",
"uuid": "^11.0.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.8.1",
"@types/lodash": "^4.17.13",
"@types/ms": "^0.7.31",
"@types/node": "18.15.11",
"@types/react": "18.2.14",
"@types/react-dom": "18.0.11",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.13",
"dotenv": "^16.4.5",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"turbo": "^1.9.3"
}
}