-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.7 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.7 KB
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
{
"name": "cheat-sheet-api",
"version": "1.0.0",
"description": "A simple RESTful API with Express, Nodejs, and MongoDB.",
"main": "index.js",
"scripts": {
"lint": "eslint --fix .",
"test": "NODE_ENV=testing mocha --timeout 5000 --exit ./tests/**/*.js",
"coverage": "NODE_ENV=testing jest --coverage && cat ./coverage/lcov.info | coveralls",
"start:dev": "NODE_ENV=development nodemon ./src/index.js",
"start": "NODE_ENV=production node ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gidraff/cheat-sheet-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gidraff/cheat-sheet-api/issues"
},
"homepage": "https://github.com/Gidraff/cheat-sheet-api#readme",
"dependencies": {
"bcrypt": "^3.0.2",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"email-validator": "^2.0.4",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-validator": "^5.3.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.15",
"mongoose": "^5.6.9",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.1",
"nodemailer": "^4.7.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"randomstring": "^1.1.5"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-equimper": "^2.2.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.0",
"jest": "^23.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"nyc": "^13.1.0",
"supertest": "^3.3.0"
}
}