-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "@apifold/runtime",
"version": "0.0.1",
"private": true,
"license": "AGPL-3.0-or-later",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc --project tsconfig.json",
"start": "node dist/index.js",
"start:cluster": "node dist/cluster.js",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@apifold/logger": "workspace:*",
"@apifold/transformer": "workspace:*",
"@apifold/types": "workspace:*",
"@apifold/vault": "workspace:*",
"cors": "^2.8.5",
"express": "^4.21.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"ioredis": "^5.4.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.0",
"postgres": "^3.4.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@apifold/eslint-config": "workspace:*",
"@apifold/tsconfig": "workspace:*",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^8.57.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}