-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "ardalink-api",
"version": "0.1.0",
"private": true,
"description": "ArdaLink API — voice, intelligence pipeline, ground-truth capture.",
"license": "Proprietary",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"preinstall": "sh -c 'case \"$npm_config_user_agent\" in pnpm/*) ;; *) echo \"Use pnpm\" >&2; exit 1 ;; esac'",
"dev": "tsx watch src/index.ts",
"build": "pnpm run typecheck && esbuild src/index.ts --bundle --platform=node --target=node24 --format=esm --outfile=dist/index.mjs --external:@node-rs/*",
"start": "node dist/index.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage"
},
"dependencies": {
"express": "^5.0.0",
"zod": "^3.25.0",
"drizzle-orm": "^0.45.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"dotenv": "^17.4.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.0",
"@types/supertest": "^6.0.2",
"typescript": "~5.9.0",
"tsx": "^4.21.0",
"esbuild": "^0.27.0",
"eslint": "^9.18.0",
"prettier": "^3.8.0",
"vitest": "^2.1.0",
"@vitest/coverage-v8": "^2.1.0",
"supertest": "^7.0.0",
"pre-commit": "^4.0.0"
}
}