-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 962 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 962 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
39
40
41
{
"name": "WebMatrixExpressSite",
"version": "0.2.0",
"author": "The WebMatrix Team <webmatrix@microsoft.com>",
"description": "A simple boilerplate for building node applications on Windows Azure (or wherever)",
"contributors": [
{
"name": "Justin Beckwith",
"email": "justbe@microsoft.com"
}
],
"main": "./server.js",
"keywords": [
"azure",
"boilerplate",
"express"
],
"dependencies": {
"bcrypt-nodejs": "latest",
"jsonwebtoken": "^5.5.4",
"express": "~3.1.0",
"mongoose": "~3.8.8",
"ejs": "^2.3.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"connect-flash": "^0.1.1",
"ejs-locals": "^1.0.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-concurrent": "~0.4.3",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-nodemon": "~0.2.0"
},
"noAnalyze": true,
"license": "Apache",
"engines": {
"node": ">=0.6.14"
}
}