-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 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
44
45
46
{
"name": "code-run",
"description": "An online simple code compiler for different languages built with Next.js and Supabase",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && prisma db push && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"prisma:studio": "prisma studio",
"prisma:push": "prisma db push --accept-data-loss",
"clean": "rm -rf node_modules"
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.3",
"@monaco-editor/react": "^4.6.0",
"@prisma/client": "^4.14.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"axios": "^1.5.1",
"bcrypt": "^5.1.0",
"lucide-react": "^0.287.0",
"monaco-themes": "^0.4.4",
"next": "^13.4.2",
"next-auth": "^4.22.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-tailwindcss-select": "^1.8.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"autoprefixer": "^10.4.4",
"encoding": "^0.1.13",
"eslint": "8.11.0",
"eslint-config-next": "^13.0.5",
"postcss": "^8.4.12",
"prisma": "^4.14.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.2"
}
}