-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 929 Bytes
/
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
{
"name": "thafryer-nextjs-graphql",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "npx prisma migrate deploy && next build",
"start": "next start",
"prisma:deploy": "npx prisma migrate deploy",
"prisma:generate": "prisma generate",
"postinstall": "prisma generate"
},
"dependencies": {
"@apollo/client": "^3.3.18",
"@prisma/client": "^2.22.1",
"apollo-server-micro": "^2.24.0",
"axios": "^0.21.1",
"dataloader": "^2.0.0",
"graphql": "^15.5.0",
"micro-cors": "^0.1.1",
"next": "latest",
"prisma": "2.22.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"autoprefixer": "^10.2.5",
"postcss": "^8.2.15",
"tailwindcss": "^2.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"license": "MIT"
}