-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
87 lines (87 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "express-rest-api",
"version": "1.1.0",
"description": "Express REST API",
"main": "index.js",
"scripts": {
"test": "yarn run lint && yarn run test:unit && yarn run test:integration",
"start": "nodemon index.js",
"dev": "NODE_ENV=development nodemon index.js",
"dev-win": "NODE_ENV=development nodemon -L index.js",
"lint": "./node_modules/.bin/eslint . --ext .js",
"prod": "NODE_ENV=production nodemon index.js",
"seed": "node seeds/index.js",
"test:integration": "mocha tests/integration/**/*.spec.js --exit",
"test:integration-server": "mocha tests/integration/**/*.spec.js --watch",
"test:unit": "mocha tests/unit/**/*.spec.js --exit",
"test:unit-server": "mocha tests/unit/**/*.spec.js --watch",
"test:report": "nyc --reporter=html --reporter=text mocha tests/**/*.spec.js"
},
"keywords": [
"express",
"es6",
"tdd",
"api",
"restful",
"mongoose"
],
"author": "gfviegas",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "1.18.2",
"busboy": "^0.2.14",
"bytes": "3.0.0",
"concat-stream": "^1.4.6",
"cors": "^2.8.4",
"debug": "3.1.0",
"dotenv": "5.0.0",
"emailjs": "2.0.0",
"express": "4.16.2",
"express-validator": "5.0.1",
"extend": "^3.0.0",
"fb": "2.0.0",
"jsonwebtoken": "8.1.1",
"moment": "2.20.1",
"mongo-dot-notation": "^1.2.0",
"mongoose": "5.0.6",
"mongoose-bcrypt": "^1.4.2",
"morgan": "1.9.0",
"multer": "^1.3.0",
"pug": "2.0.0-rc.4",
"request": "2.83.0",
"request-promise": "4.2.2",
"rfr": "^1.2.3",
"util": "^0.10.3",
"validator": "9.4.1"
},
"devDependencies": {
"chai": "4.1.2",
"chai-shallow-deep-equal": "^1.4.6",
"chalk": "2.3.1",
"dirty-chai": "^2.0.1",
"eslint": "^4.18.1",
"eslint-config-default": "^0.2.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "5.0.1",
"nodemon": "1.15.1",
"nyc": "11.4.1",
"sinon": "4.3.0",
"sinon-mongoose": "2.0.2",
"standard": "11.0.0",
"supertest": "3.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"expect",
"beforeEach",
"afterEach"
]
}
}