-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 827 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (37 loc) · 827 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
29
30
31
32
33
34
35
36
37
38
{
"name": "sql2api",
"version": "0.0.0",
"private": true,
"description": "sql2api monorepo managed by pnpm workspaces",
"packageManager": "pnpm@11.10.0",
"bin": {
"sql2api": "./bin/sql2api.js"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"dev:admin": "pnpm --dir apps/admin dev",
"dev:services": "pnpm --dir apps/services dev",
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"clean": "pnpm -r run clean"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"@axiosleo/cli-tool": "^1.6.12",
"@axiosleo/koapp": "^1.2.1",
"axios": "^1.9.0",
"better-sqlite3": "^11.9.1",
"dotenv": "^16.5.0"
},
"pnpm": {
"ignoredBuiltDependencies": [
"oracledb"
]
}
}