-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "nucleotid-back",
"version": "0.1.0",
"description": "Lab data manager",
"main": "index.js",
"scripts": {
"start": "node ./src/server",
"devstart": "nodemon ./src/server",
"dev-server": "docker-compose -f docker/docker-dev.yml up",
"test-server": "docker-compose -f docker/docker-test.yml up --abort-on-container-exit",
"test-ci": "docker-compose -f docker/docker-test-ci.yml up --abort-on-container-exit",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/palicode/nucleotid-back.git"
},
"author": "ezorita",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/palicode/nucleotid-back/issues"
},
"homepage": "https://github.com/palicode/nucleotid-back#readme",
"dependencies": {
"bluebird": "^3.5.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"morgan": "^1.9.1",
"nodemailer": "^4.6.8",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"pg-promise": "^8.4.6",
"uuid": "^3.3.2",
"validator": "^10.8.0",
"winston": "^3.1.0",
"xregexp": "^4.2.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"supertest": "^3.3.0"
}
}