-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "genesis",
"version": "0.3.0",
"description": "Docker enviroment by config",
"bin": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/icarcal/genesis.git",
"author": "Icaro Caldeira @icarcal",
"license": "MIT",
"private": false,
"scripts": {
"start": "yarn watch",
"build": "tsc",
"watch": "tsc -w",
"compile": "tsc"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.19.0",
"dockerode": "^2.5.7",
"inquirer": "^6.2.1",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"ora": "^3.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/dockerode": "^2.5.10",
"@types/dotenv": "^6.1.0",
"@types/inquirer": "^0.0.43",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"@types/ora": "^1.3.4",
"@types/yamljs": "^0.2.30",
"eslint": "5.6.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-typescript": "^0.14.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"typescript-eslint-parser": "^21.0.2"
}
}