-
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "jqplay",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"setup-db": "node scripts/setup-db.js",
"prisma:migrate": "npm run setup-db && npx prisma migrate dev"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.13.0",
"@monaco-editor/react": "^4.6.0",
"@mui/icons-material": "^6.3.0",
"@mui/lab": "^6.0.0-beta.21",
"@mui/material": "^6.3.1",
"@prisma/client": "^6.1.0",
"@sentry/nextjs": "^8.47.0",
"jq-wasm": "^1.0.1",
"next": "15.1.3",
"pg": "^8.13.0",
"prisma": "^6.1.0",
"react": "^18",
"react-dom": "^18",
"uuid": "^11.0.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"@types/node": "^22",
"@types/pg": "^8.11.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.8",
"comlink": "^4.4.1",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"monaco-editor": "^0.50.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"postcss": "^8",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}