-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 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
47
48
49
50
51
{
"name": "pp1",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "node prisma/seed.js"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sql": "^6.8.0",
"@prisma/client": "^5.21.1",
"@uiw/react-codemirror": "^4.23.6",
"autoprefixer": "^10.4.20",
"bcrypt": "^5.1.1",
"codemirror": "^6.0.2",
"dockerode": "^4.0.7",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"next": "14.2.14",
"pidusage": "^3.0.2",
"prisma": "^5.21.1",
"prismjs": "^1.29.0",
"react": "^18",
"react-dom": "^18",
"react-syntax-highlighter": "^15.6.1",
"uuid": "^11.1.0",
"vm2": "^3.9.19"
},
"devDependencies": {
"@types/node": "22.9.3",
"@types/prismjs": "^1.26.5",
"@types/react": "18.3.12",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "5.7.2"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}