-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 922 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 922 Bytes
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
{
"type": "module",
"name": "devup-api",
"scripts": {
"build": "node build.js && pnpm -r --workspace-concurrency 1 build",
"build:debug": "node build.js && pnpm -r --workspace-concurrency 1 build:debug",
"build:sqlite": "pnpm -F sqlite build",
"project:fastapi": "cd project/python/fastapi && uvicorn main:app --reload",
"test": "cargo test && node test.js",
"test:vitest": "vitest --run"
},
"devDependencies": {
"@devup-sql/sqlite": "workspace:*",
"@devup-sql/postgres": "workspace:*",
"@devup-sql/mysql": "workspace:*",
"@devup-api/model": "workspace:*",
"@types/node": "^22.15.21",
"eslint": "^9.27.0",
"eslint-plugin-devup": "^2.0.5",
"reflect-metadata": "^0.2.2",
"tree-kill": "^1.2.2",
"typescript": "^5.8.3",
"vitest": "^3.1.4",
"wait-on": "^8.0.3",
"@vitejs/plugin-react-swc": "^3.10.0"
},
"packageManager": "pnpm@10.11.0"
}