-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "trustsignal-app",
"version": "0.1.0",
"private": true,
"description": "TrustSignal GitHub App service and GitHub Action for verification orchestration.",
"type": "commonjs",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "node scripts/build.mjs",
"start": "node dist/server.js",
"test": "vitest run",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"validate": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"@octokit/core": "^6.1.4",
"@octokit/plugin-retry": "^7.2.1",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"pino": "^9.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.10",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"esbuild": "^0.25.10",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"supertest": "^7.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}