-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·42 lines (42 loc) · 1.11 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
{
"name": "instance-backend-nodejs",
"version": "1.0.0",
"description": "Service for running a Nile instance",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/index.js",
"lint": "standard --fix",
"migrate": "db-migrate",
"docs": "apidoc -i ./src/ -o ./docs/",
"test": "standard && mocha --recursive --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nileorg/instance-backend-nodejs.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nileorg/instance-backend-nodejs/issues"
},
"homepage": "https://github.com/nileorg/instance-backend-nodejs#readme",
"dependencies": {
"bcrypt": "^3.0.4",
"httpdispatcher": "^2.1.2",
"ipfs": "^0.36.3",
"jsonwebtoken": "^8.5.0",
"randomstring": "^1.1.5",
"socket.io": "^2.2.0",
"sqlite3": "^4.0.8"
},
"devDependencies": {
"apidoc": "^0.17.7",
"chai": "^4.2.0",
"db-migrate": "^0.11.4",
"db-migrate-sqlite3": "^0.3.1",
"mocha": "^6.1.4",
"node-fetch": "^2.6.0",
"socket.io-client": "^2.2.0",
"standard": "*"
}
}