-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.14 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
{
"name": "iot-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"devDocker": "npx prisma migrate reset --force && npx prisma migrate dev --name init && next dev",
"dev": "npx prisma migrate dev --name init && next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@auth0/nextjs-auth0": "^3.5.0",
"@pothos/core": "^3.41.0",
"@pothos/plugin-prisma": "^3.64.0",
"@pothos/plugin-relay": "^3.46.0",
"@prisma/client": "5.9.1",
"graphql": "^16.8.1",
"graphql-yoga": "^5.1.1",
"mqtt": "^5.3.5",
"next": "^13.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.50.1",
"react-hot-toast": "^2.4.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"prisma": "^5.9.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.4"
},
"prisma": {
"seed": "ts-node --transpile-only ./prisma/seed.ts"
}
}