-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "bionet-3-api",
"version": "0.0.1",
"description": "",
"main": "server.js",
"engines": {
"node": ">8.12.0"
},
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "NODE_ENV=development node server.js",
"test": "NODE_ENV=test nyc mocha --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"seed": "./lib/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biobricks/bionet-3-api.git"
},
"author": "Matthew Stewart",
"contributors": [
"Keoni Gandall",
"Thomas Smith",
"Matthew Stewart"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/biobricks/bionet-3-api/issues"
},
"homepage": "https://github.com/biobricks/bionet-3-api#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"shortid": "^2.2.13"
},
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-bearer-token": "^2.2.0",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mongoose": "^5.3.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
}
}