-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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-models-demo",
"repository": "https://github.com/ably-labs/models.git",
"license": "MIT",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"postinstall": "prisma generate",
"db": "prisma db push && npx prisma db execute --file ./prisma/migrations/trigger.sql --schema prisma/schema.prisma && prisma db seed",
"build": "next build",
"format": "prettier './**/*.{js,ts}' --write",
"format:check": "prettier './**/*.{js,ts}' --check",
"start": "next start",
"lint": "next lint"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@ably-labs/models": "0.0.3",
"@heroicons/react": "^2.0.18",
"@prisma/client": "^5.14.0",
"@types/node": "18.15.11",
"@types/react": "18.2.14",
"@types/react-dom": "18.0.11",
"@types/uuid": "^9.0.7",
"ably": "^2.0.3",
"autoprefixer": "10.4.14",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"iron-session": "8.0.0-alpha.0",
"ms": "^2.1.3",
"next": "14.1.1",
"postcss": "8.4.31",
"prettier": "^2.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.1",
"ts-node": "^10.9.1",
"typescript": "5.1.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/ms": "^0.7.31",
"cross-fetch": "^4.0.0",
"prisma": "^5.14.0",
"turbo": "^1.9.3"
}
}