-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "mnb-data-services",
"version": "1.6.0",
"private": true,
"description": "Management of data volumes. Backup, export, optimize, and synthesize.",
"author": "Patrick Edson <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"dockerRepository": "mouselightdatabrowser",
"dockerImageName": "data-services",
"scripts": {
"backup": "node backup/backup.js",
"restore": "node restore/restore.js",
"export": "node export/export.js",
"optimize": "node optimize/optimize.js",
"metrics": "node export/metrics.js",
"clean": "tsc && gulp clean",
"compile": "tsc && gulp compile",
"build": "tsc && gulp build",
"docker-build": "tsc && gulp docker-build",
"docker-release": "tsc && gulp release"
},
"dependencies": {
"cli-progress": "^3.9.0",
"debug": "^3.1.0",
"fs-extra": "^7.0.0",
"lodash": "^4.17.4",
"moment": "^2.18.0",
"pg": "^7.4.3",
"random-word": "^2.0.0",
"sequelize": "^5.21.2",
"stats-lite": "^2.2.0",
"uuid": "^3.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/fs-extra": "^5.0.4",
"@types/gulp": "^4.0.7",
"@types/gulp-shell": "^0.0.30",
"@types/lodash": "^4.14.78",
"@types/moment": "^2.13.0",
"@types/sequelize": "^4.0.53",
"@types/uuid": "^3.4.2",
"@types/yargs": "^16.0.1",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-shell": "^0.6.5",
"merge-stream": "^2.0.0",
"typescript": "^4.2.3"
}
}