forked from prabod/Sample-Node.js-Application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
{
"name": "samplenodejsapp",
"version": "1.0.0",
"description": "A Sample Node.js Application",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prabod/Sample-Node.js-Application.git"
},
"author": "Prabod Rathnayaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/prabod/Sample-Node.js-Application/issues"
},
"homepage": "https://github.com/prabod/Sample-Node.js-Application#readme",
"dependencies": {
"bcrypt-nodejs": "latest",
"body-parser": "^1.12.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.3.5",
"cookie-session": "^1.1.0",
"crypto": "^0.0.3",
"express": "^4.12.4",
"express-handlebars": "^3.0.0",
"express-validator": "^2.10.0",
"mongodb": "^2.2.22",
"mongoose": "^4.8.1",
"morgan": "^1.7.0",
"passport": "^0.2.2",
"passport-local": "^1.0.0",
"serve-static": "^1.9.3"
}
}