-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·38 lines (38 loc) · 884 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
37
38
{
"name": "node-boilerplate",
"version": "0.0.1",
"description": "A simple starter code for Node with Sequalize and Passport.js",
"main": "app.js",
"private": true,
"scripts": {
"test": "ava",
"start": "nodemon ./bin/www"
},
"author": "TJ Ferrell <tj.ferrell@gmail.com>",
"license": "MIT",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.13.1",
"express-session": "1.13.0",
"hbs": "~3.1.0",
"morgan": "~1.6.1",
"mysql": "~2.10.2",
"passport": "~0.3.2",
"passport-local": "1.0.0",
"sequelize": "~3.19.2",
"serve-favicon": "~2.3.0",
"sqlite3": "^3.1.8",
"underscore": "1.8.3"
},
"devDependencies": {
"ava": "^0.18.2"
},
"ava": {
"files":["tests/*.js"],
"verbose":true,
"failFast":true
}
}