-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 1.21 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
{
"name": "boohackers-backend",
"version": "1.0.0",
"description": "backend for boohackersapp",
"main": "app.js",
"license": "MIT",
"scripts": {
"mongo:start": "docker run --name realworld-mongo -p 27017:27017 mongo & sleep 5",
"start": "node ./app.js",
"dev": "nodemon ./app.js",
"test": "newman run ./tests/api-tests.postman.json -e ./tests/env-api-tests.postman.json",
"stop": "lsof -ti :3000 | xargs kill",
"mongo:stop": "docker stop realworld-mongo && docker rm realworld-mongo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RussianBooHackers/BooHackersBackend.git"
},
"dependencies": {
"body-parser": "1.19.0",
"cors": "2.8.5",
"ejs": "2.7.1",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-jwt": "5.3.1",
"express-session": "1.17.0",
"jsonwebtoken": "8.5.1",
"method-override": "3.0.0",
"methods": "1.1.2",
"mongoose": "5.7.7",
"mongoose-unique-validator": "2.0.3",
"morgan": "1.9.1",
"passport": "0.4.0",
"passport-local": "1.0.0",
"request": "2.88.0",
"slug": "1.1.0",
"underscore": "1.9.1"
},
"devDependencies": {
"newman": "^4.5.5",
"nodemon": "^1.19.4"
}
}