-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
88 lines (88 loc) · 2.5 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mlsa-kiit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"prepare": "husky install",
"postinstall": "prisma generate",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"db:generate": "prisma generate",
"db:push": "prisma db push"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@nextui-org/react": "^0.0.0-dev-v2-20230622022515",
"@prisma/client": "^4.16.1",
"@radix-ui/react-aspect-ratio": "^1.0.3",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@tanstack/react-query": "^4.29.1",
"@types/validator": "^13.7.17",
"@vercel/analytics": "^1.3.1",
"aos": "^2.3.4",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"formik": "^2.4.2",
"framer-motion": "^10.12.16",
"lodash": "^4.17.21",
"lucide-react": "^0.262.0",
"next": "^13.4.7",
"next-auth": "^4.22.1",
"radix-ui": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"react-intersection-observer": "^9.5.2",
"scrollmagic": "^2.0.8",
"swiper": "^10.0.4",
"tailwind-merge": "^2.2.2",
"validator": "^13.9.0",
"zod": "^3.21.4",
"zod-formik-adapter": "^1.2.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/aos": "^3.0.4",
"@types/bcrypt": "^5.0.0",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/react": "^18.0.34",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^4.16.1",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed/index.ts"
},
"lint-staged": {
"**/*.{ts,js}": "eslint --cache --cache-location .next/cache/eslint/ --fix",
"**/*.{ts,js,md,json}": "prettier --write"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=6.0.0"
}
}