-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
52
53
54
{
"name": "jqplay",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run openapi && next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "prisma generate && npm run copy-monaco",
"copy-monaco": "bash scripts/copy-monaco.sh",
"setup-db": "node scripts/setup-db.js",
"prisma:migrate": "npm run setup-db && npx prisma migrate dev",
"openapi": "next-openapi-gen generate && node scripts/add-openapi-examples.js"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.13.0",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^6.4.4",
"@mui/lab": "^6.0.0-beta.21",
"@mui/material": "^6.4.8",
"@prisma/client": "^6.7.0",
"@scalar/api-reference-react": "^0.8.62",
"@sentry/nextjs": "^9.17.0",
"@sentry/node": "^9.17.0",
"ajv": "^8.17.1",
"jq-wasm": "^1.1.0-jq-1.8.1",
"next": "^15.5.12",
"piscina": "^5.1.4",
"react": "^18",
"react-dom": "^18",
"uuid": "^11.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22",
"@types/react": "^18",
"@types/uuid": "^9.0.8",
"comlink": "^4.4.1",
"eslint": "^9",
"eslint-config-next": "^15.5.12",
"monaco-editor": "^0.55.1",
"next-openapi-gen": "^0.9.4",
"prisma": "6.7.0",
"typescript": "^5",
"vitest": "^4.0.17"
},
"overrides": {
"minimatch": ">=10.2.1"
}
}