-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.76 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
{
"name": "code-night-3",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/anteqkois/code-night-3.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "git add . && cz",
"postcommit": "git push",
"prisma:update": "npx prisma db push && npx prisma db seed"
},
"dependencies": {
"@heroicons/react": "^2.0.13",
"@prisma/client": "^4.7.1",
"@tanstack/react-query": "^4.19.1",
"axios": "^1.0.0",
"classnames": "^2.3.2",
"cloudinary": "^1.33.0",
"encoding": "^0.1.13",
"ethers": "^5.7.0",
"formik": "^2.2.9",
"framer-motion": "^7.10.0",
"next": "13.0.6",
"next-auth": "^4.18.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"siwe": "^2.1.3",
"wagmi": "^0.6.8",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/node": "^18.11.15",
"@types/react": "18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-slick": "^0.23.10",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"autoprefixer": "^10.4.13",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prisma": "^4.7.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prisma": {
"seed": "node prisma/seed.js"
}
}