-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 905 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 905 Bytes
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
{
"name": "express.js",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"start:dev": "nodemon server.js",
"test:win": "set SESSION_MONGO=test&&mocha",
"test": "SESSION_MONGO=test mocha"
},
"keywords": [],
"author": "John Serrano <jandreys15@gmail.com> (https://twitter.com/jandrey15)",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"connect-mongo": "2.0.1",
"dotenv": "5.0.1",
"express": "4.16.3",
"express-jwt": "^5.3.1",
"express-session": "1.15.6",
"jsonwebtoken": "^8.3.0",
"mongoose": "5.1.3",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"pug": "^2.0.3"
},
"devDependencies": {
"chai": "4.1.2",
"mocha": "5.2.0",
"nodemon": "1.17.5",
"supertest": "^3.1.0"
}
}