-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "my-blockly-maze",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"prisma:generate": "prisma generate"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"dependencies": {
"@formkit/auto-animate": "^1.0.0-beta.6",
"@prisma/client": "^5.0.0",
"@types/bcrypt": "^5.0.0",
"@types/multer": "^1.4.7",
"@types/node": "18.15.11",
"@types/react": "18.0.34",
"@types/react-dom": "18.0.11",
"@types/uuid": "^9.0.1",
"@types/validator": "^13.7.14",
"axios": "^1.3.5",
"bcrypt": "^5.1.0",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.7",
"eslint": "8.38.0",
"eslint-config-next": "^13.4.4",
"firebase": "^9.19.1",
"framer-motion": "^10.12.4",
"multer": "^1.4.5-lts.1",
"next": "^13.4.10",
"next-auth": "^4.22.0",
"next-connect": "^0.13.0",
"next-seo": "^6.0.0",
"react": "^18.2.0",
"react-countup": "^6.4.2",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-hook-form": "^7.43.9",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.8.0",
"react-tooltip": "^5.13.1",
"react-wrap-balancer": "^0.4.1",
"styled-components": "^5.3.9",
"typescript": "5.0.4",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.0",
"validator": "^13.9.0"
},
"devDependencies": {
"@types/styled-components": "^5.1.26",
"prisma": "^5.0.0"
}
}