-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 793 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 793 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
{
"name": "self-healing-code",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && node scripts/copy-build-assets.mjs",
"start": "node dist/index.js",
"test": "vitest",
"test:run": "vitest run"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"better-sqlite3": "^11.6.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"jose": "^6.2.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/express": "^5.0.6",
"@types/node": "^25.4.0",
"@types/supertest": "^6.0.2",
"supertest": "^7.0.0",
"tsx": "^4.19.3",
"typescript": "^5.9.3",
"vitest": "^2.1.0"
}
}