-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dbacked",
"version": "0.5.3",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:ts": "tsc",
"build:bin": "ts-node misc/scripts/build.ts",
"watch": "nodemon -e ts,tsx --exec 'ts-node' src/index.ts",
"start:nobuild": "ts-node src/index.ts",
"start:build": "tsc && node dist/index.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"bin": "dist/index.js",
"pkg": {
"scripts": "dist/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbacked/agent.git"
},
"author": "Guillaume Besson",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dbacked/agent/issues"
},
"homepage": "https://github.com/dbacked/agent#readme",
"dependencies": {
"aws-sdk": "^2.288.0",
"axios": "^0.18.0",
"cli-table": "^0.3.1",
"cron-parser": "^2.5.0",
"daemonize-process": "^1.0.9",
"downgrade-root": "^1.2.2",
"inquirer": "^6.0.0",
"is-root": "^2.0.0",
"lodash": "^4.17.10",
"longjohn": "^0.2.12",
"luxon": "^1.3.0",
"mkdirp": "^0.5.1",
"mkdirp2": "^1.0.4",
"mongodb": "^3.1.1",
"multistream": "^2.1.1",
"mysql": "^2.16.0",
"node-forge": "^0.7.5",
"pg": "^7.4.3",
"promise-readable": "^3.1.5",
"proper-lockfile": "^3.0.2",
"randomstring": "^1.1.5",
"unzip-stream": "^0.3.0",
"uuid": "^3.3.2",
"winston": "^3.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/inquirer": "0.0.42",
"@types/lodash": "^4.14.116",
"@types/luxon": "^1.2.2",
"@types/mongodb": "^3.1.4",
"@types/mysql": "^2.15.5",
"@types/node": "^10.1.4",
"@types/node-forge": "^0.7.4",
"@types/pg": "^7.4.10",
"@types/uuid": "^3.4.3",
"@types/yargs": "^11.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-typescript": "^0.12.0",
"nodemon": "^1.17.5",
"pkg": "^4.3.3",
"ts-node": "^6.0.5",
"typescript": "^2.8.4",
"typescript-eslint-parser": "^15.0.0",
"vuepress": "^0.14.2"
}
}