This repository was archived by the owner on May 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "api-nodejs",
"version": "1.0.0",
"description": "Boilerplate for a NodeJS restful API with Express and MongoDB",
"main": "app/index.js",
"scripts": {
"build": "rimraf dist/ && babel app -d dist/",
"start": "npm run build && node dist/index.js",
"dev": "nodemon --exec babel-node -- app/index.js",
"lint": "eslint app/",
"script:config": "node scripts/config.js",
"script:db": "node scripts/db.js"
},
"keywords": [
"node",
"express",
"api",
"restful",
"boilerplate",
"mongo"
],
"author": "AitorDB <aitor.db.mail@gmail.com> (http://aitordb.com)",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.2.1",
"bcrypt-as-promised": "^1.1.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-rate-limit": "^2.11.0",
"helmet": "^3.12.1",
"http-status": "^1.1.2",
"joi": "^11.4.0",
"jwt-simple": "^0.5.1",
"moment": "^2.22.1",
"mongoose": "^4.13.13",
"mz": "^2.7.0",
"pug": "^2.0.3",
"winston": "^2.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.12.0",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2"
}
}