forked from tigaly/starter-nodejs-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "starter-nodejs-rest",
"version": "1.0.0",
"description": "Starter for a Node.js RESTful Application using MongoDB and JSON Web Token",
"license": "MIT",
"author": "Pedro Affonso Kehl, tigaly",
"repository": {
"type": "git",
"url": "https://github.com/tigaly/starter-nodejs-rest"
},
"scripts": {
"start": "node app/app.js",
"nodemon": "nodemon app/app.js",
"test": "babel-tape-runner test/test-*.js",
"eslint": "eslint ./app"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "~1.17.1",
"compression": "^1.6.2",
"consign": "^0.1.4",
"express": "~4.15.2",
"jsonwebtoken": "^7.3.0",
"mongodb": "^2.2.25",
"nodemailer": "^4.0.0",
"q": "^1.5.0",
"winston": "^2.3.1",
"supertest": "^3.0.0",
"tape": "~4.6.3",
"babel-tape-runner": "^2.0.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"nodemon": "^1.11.0"
},
"main": "app/app.js"
}