-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "code-racer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prebuild": "prisma generate",
"predev": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"prisma:dev": "prisma migrate dev"
},
"dependencies": {
"@next/font": "13.1.1",
"@prisma/client": "^4.8.0",
"@radix-ui/react-tooltip": "^1.0.2",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@vercel/analytics": "^0.1.7",
"canvas-confetti": "^1.5.1",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"framer-motion": "^8.1.3",
"highlight.js": "^11.7.0",
"howler": "^2.2.3",
"next": "13.1.1",
"next-auth": "^4.17.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-timer-hook": "^3.0.5",
"typescript": "4.9.4"
},
"devDependencies": {
"@types/canvas-confetti": "^1.6.0",
"@types/howler": "^2.2.7",
"@types/mixpanel-browser": "^2.38.0",
"prisma": "^4.8.0"
}
}