-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
47
48
49
50
51
52
53
{
"name": "openrna",
"version": "0.1.0",
"description": "OpenRNA control plane for personalized neoantigen RNA vaccine workflows",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/KonkovaElena/OpenRNA.git"
},
"bugs": {
"url": "https://github.com/KonkovaElena/OpenRNA/issues"
},
"homepage": "https://github.com/KonkovaElena/OpenRNA#readme",
"packageManager": "npm@11.6.1",
"type": "commonjs",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/index.ts",
"start": "node dist/src/index.js",
"sbom:cyclonedx": "npm sbom --sbom-format cyclonedx --package-lock-only --omit=dev",
"sbom:cyclonedx:file": "node scripts/write-cyclonedx-sbom.mjs openrna-runtime-sbom.cdx.json",
"test": "node --import tsx --test tests/**/*.test.ts",
"test:coverage": "node --experimental-test-coverage --import tsx --test tests/**/*.test.ts",
"ci": "npm run build && npm test && npm audit --omit=dev --audit-level=high"
},
"keywords": [
"human-oncology",
"neoantigen",
"mrna",
"workflow-orchestration",
"case-registry",
"typescript",
"express"
],
"dependencies": {
"express": "^5.2.1",
"pg": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^24.12.0",
"@types/pg": "^8.20.0",
"@types/supertest": "^7.2.0",
"pg-mem": "^3.0.14",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}