-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "@neutron-org/cosmopark",
"version": "1.7.13",
"description": "Start and interact with your cosmos park",
"main": "./lib/index.js",
"license": "MIT",
"author": "Sergey Ratiashvili <serg.s.r@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/neutron-org/cosmopark/"
},
"bin": {
"cosmopark": "./lib/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint ./src -f compact",
"lint-fix": "eslint ./src --fix"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"commander": "^11.0.0",
"docker-cli-js": "^2.10.0",
"docker-compose": "1.1.0",
"lodash": "^4.17.21",
"pino": "^8.17.2",
"rimraf": "^5.0.7",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}