-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "starter",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"db:generate": "prisma generate --schema=./db/schema.prisma",
"db:migrate": "prisma migrate dev --schema=./db/schema.prisma --skip-seed",
"db:reset": "prisma migrate reset --schema=./db/schema.prisma --skip-seed",
"db:push": "prisma db push --schema=./db/schema.prisma --skip-seed",
"db:seed": "npx prisma db seed",
"db:studio": "prisma studio --schema=./db/schema.prisma",
"now-build": "yarn generate --schema=./db/schema.prisma && next build"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.5",
"@next-auth/prisma-adapter": "^0.5.2-next.19",
"@prisma/client": "^3.3.0",
"@tailwindcss/forms": "^0.2.1",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"next": "^12.0.2",
"next-auth": "4.0.0-beta.6",
"next-connect": "^0.10.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.18.1",
"react-query": "^3.23.2",
"superagent": "^6.1.0"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} db/seed.ts"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.0.0-beta.4",
"@types/bcryptjs": "^2.4.2",
"@types/lodash": "^4.14.176",
"@types/node": "^14.14.33",
"@types/react": "^17.0.3",
"@types/superagent": "^4.1.13",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"mockdate": "^3.0.5",
"postcss": "^8.2.8",
"prettier": "^2.3.1",
"prisma": "^3.3.0",
"tailwindcss": "^2.2.2",
"ts-node": "^10.4.0",
"typescript": "^4.2.3",
"webpack": "^5.62.1"
}
}