-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.13 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
65
66
67
68
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"db:migrate": "prisma migrate dev --schema=./db/schema.prisma",
"db:generate": "prisma generate --schema=./db/schema.prisma",
"db:reset": "prisma db push --force-reset --schema=./db/schema.prisma && npx prisma db seed",
"db:seed": "npx prisma db seed",
"db:push": "prisma db push --schema=./db/schema.prisma",
"db:studio": "prisma studio --schema=./db/schema.prisma"
},
"dependencies": {
"@dicebear/collection": "^5.2.0",
"@dicebear/core": "^5.2.0",
"@netlify/plugin-nextjs": "^4.40.2",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.4.0",
"@tanstack/react-query": "^4.20.4",
"@tanstack/react-table": "^8.7.6",
"@types/bcryptjs": "^2.4.2",
"@types/lodash": "^4.14.186",
"bcryptjs": "^2.4.3",
"eslint-config-next": "^13.5.4",
"husky": "^8.0.1",
"ignore-loader": "^0.1.2",
"jotai": "^1.13.1",
"lodash": "^4.17.21",
"next": "13.4.9",
"next-auth": "^4.12.3",
"npx": "^10.2.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-animate-height": "^3.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.37.0",
"react-intersection-observer": "^9.4.1",
"react-toastify": "^9.1.1",
"sharp": "^0.31.3",
"styled-jsx": "^5.1.2",
"sweetalert2": "^11.6.16",
"sweetalert2-react-content": "^5.0.7"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} db/seed.ts"
},
"devDependencies": {
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prisma": "^4.4.0",
"tailwindcss": "^3.1.2",
"ts-node": "^10.9.1",
"typescript": "4.7.2"
}
}