-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "webditor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"pnpm run fastapi-dev\" \"pnpm run next-dev\"",
"build": "pnpm run next-build",
"start": "concurrently \"pnpm run fastapi-dev\" \"pnpm run next-start\"",
"next-dev": "cd frontend && pnpm run dev",
"next-build": "cd frontend && pnpm run build",
"next-start": "cd frontend && pnpm run start",
"fastapi-dev": "node scripts/run_fastapi.js",
"build-rawdata": "uv run --project ./preprocess preprocess/rawdata.py",
"schema": "uv run --project ./preprocess preprocess/schema.py"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^9.1.2",
"json-schema-to-typescript": "^15.0.4"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"eslint": "^9.26.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.1.0",
"json-refs": "^3.0.15",
"json-schema-to-zod": "^2.6.1",
"prettier": "^3.5.3",
"quicktype": "^23.0.171",
"typescript-eslint": "^8.32.1"
}
}