-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.47 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "disk-management",
"version": "0.5.4",
"description": "Module/application for management your disk",
"main": "index.js",
"license": "MIT",
"author": "Giap Dong",
"scripts": {
"dev:api": "cross-env NODE_ENV=development ts-node-dev src/api/app.ts",
"build:ts": "tsc",
"test:ts": "jest --detectOpenHandles",
"run": "bash build.sh && node bin/cli.js"
},
"dependencies": {
"axios": "^1.6.0",
"colors": "^1.4.0",
"commander": "^6.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-flow": "^3.2.0",
"express": "^4.17.3",
"express-winston": "^4.0.5",
"inquirer": "8.0.0",
"ora": "^4.0.5",
"response-format": "giapdong/response-format",
"tough-cookie": "^4.1.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/inquirer": "^9.0.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"ts-node-dev": "^1.1.6",
"typescript": "^4.1.3"
},
"bin": {
"disk-management": "./bin/cli.js"
},
"keywords": [
"disk-management",
"storage",
"cli"
],
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/giapdong/disk-management.git"
},
"bugs": {
"url": "https://github.com/giapdong/disk-management/issues"
},
"homepage": "https://github.com/giapdong/disk-management#readme",
"types": "index.d.ts",
"files": [
"build",
"bin/*.js",
"index.d.ts"
]
}