-
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.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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": "ephemeral",
"version": "1.0.0",
"description": "Docker container orchestration system with automatic lifecycle management",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist"
},
"keywords": [
"docker",
"containers",
"orchestration",
"api",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"dockerode": "^4.0.2",
"express": "^4.18.2",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/dockerode": "^3.3.42",
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}