-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
{
"name": "audio-app-backend",
"version": "0.0.1",
"description": "audio app on node",
"main": "app.js",
"engines": {
"node": "9.x"
},
"scripts": {
"mongo:start": "docker run --name realworld-mongo -p 27017:27017 mongo & sleep 5",
"dev": "node ./app.js",
"start": "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/gothinkster/productionready-node-api.git"
},
"license": "ISC",
"dependencies": {
"body-parser": "1.15.0",
"cors": "2.7.1",
"download-file": "^0.1.5",
"ejs": "2.5.5",
"errorhandler": "1.4.3",
"express": "4.13.4",
"express-jwt": "3.3.0",
"express-session": "1.13.0",
"fs": "0.0.1-security",
"jsonwebtoken": "7.1.9",
"method-override": "2.3.5",
"methods": "1.1.2",
"mongoose": "4.4.10",
"mongoose-unique-validator": "1.0.2",
"morgan": "1.7.0",
"multer": "^1.3.0",
"nodemailer": "^4.6.3",
"passport": "0.3.2",
"passport-local": "1.0.0",
"path": "^0.12.7",
"request": "2.69.0",
"slug": "0.9.1",
"underscore": "1.8.3"
},
"devDependencies": {
"newman": "^3.8.2",
"nodemon": "^1.11.0"
},
"bugs": {
"url": "https://github.com/gothinkster/productionready-node-api/issues"
},
"homepage": "https://github.com/gothinkster/productionready-node-api#readme",
"directories": {
"test": "tests"
},
"keywords": [
"baseball"
],
"author": "Tonnie Exelero <tonnieexelero@gmail.com>"
}