-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "rethinkdb-backup",
"version": "0.1.0",
"description": "RethinkDB backup services and archive server",
"main": "index.js",
"scripts": {
"start": "node -r esm ./index.js",
"watch": "nodemon -r esm ./index.js",
"lint": "eslint *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PathwayCommons/rethinkdb-backup.git"
},
"keywords": [
"rethinkdb",
"dump"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/PathwayCommons/rethinkdb-backup/issues"
},
"homepage": "https://github.com/PathwayCommons/rethinkdb-backup#readme",
"dependencies": {
"base-64": "^1.0.0",
"date-fns": "^2.17.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"rethinkdb": "^2.4.2",
"serve-favicon": "^2.5.0",
"serve-index": "^1.9.1",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"nodemon": "^2.0.7"
}
}