-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.44 KB
/
package.json
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
{
"name": "containernursery",
"version": "1.9.0",
"description": "Puts Docker Containers to sleep and wakes them back up when they're needed",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"watch": "nodemon",
"build": "rimraf ./build && tsc",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItsEcholot/ContainerNursery.git"
},
"author": "Marc Berchtold",
"license": "MIT",
"bugs": {
"url": "https://github.com/ItsEcholot/ContainerNursery/issues"
},
"homepage": "https://github.com/ItsEcholot/ContainerNursery#readme",
"devDependencies": {
"@types/dockerode": "^3.2.7",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/http-proxy": "^1.17.7",
"@types/node": "^16.7.10",
"@types/node-fetch": "^2.5.12",
"@types/pino": "^6.3.11",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^2.0.12",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"chokidar": "^3.5.2",
"dockerode": "^3.3.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"node-fetch": "^2.6.6",
"pino": "^7.4.1",
"pino-pretty": "^7.2.0",
"yaml": "^1.10.2"
}
}