-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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": "docker-ts-app",
"version": "0.1.0",
"description": "Container management API that uses the Docker socket",
"scripts": {
"build": "tsc -p .",
"docker:build": "npm run build && docker buildx build --platform linux/amd64,linux/arm64 -t magic-proxy:latest .",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint . --ext .ts --max-warnings 10",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"@types/helmet": "^0.0.48",
"dockerode": "^4.0.9",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"is-docker": "^4.0.0",
"js-yaml": "^4.1.1",
"nunjucks": "^3.2.4",
"winston": "^3.19.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/dockerode": "^3.3.47",
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.6",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitest/coverage-istanbul": "^4.0.16",
"@vitest/ui": "^4.0.16",
"c8": "^10.1.3",
"eslint": "^9.39.2",
"globals": "^17.0.0",
"ts-node-dev": "^2.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}