-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 KB
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
42
{
"name": "node-api-oauth2-boilerplate",
"version": "1.0.0",
"description": "Sample RESTful API via Node.js + Express + MongoDB",
"repository": "[email protected]:ashlinchak/node-api-oauth2-boilerplate.git",
"main": "app.js",
"scripts": {
"apidoc:generate": "apidoc -o public/doc -c public/doc -i apidoc -i controllers/api",
"apidoc:open": "opener ./public/doc/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"start:ni": "node-inspector -p 8082 -d 5859 --save-live-edit true -b false",
"start:dev": "nodemon --debug=5859 app.js",
"dev": "npm run start:ni & npm run start:dev"
},
"author": "Alexander Shlinchak",
"license": "MIT",
"dependencies": {
"bcrypt": "^0.8.5",
"body-parser": "^1.15.0",
"cookie-parser": "^1.4.1",
"crypto": "0.0.3",
"debug": "^2.2.0",
"express": "^4.13.4",
"faker": "^3.0.1",
"fs": "0.0.2",
"lodash": "^4.6.1",
"method-override": "^2.3.5",
"mongoose": "^4.4.6",
"nconf": "^0.8.4",
"oauth2orize": "^1.2.2",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-oauth2-client-password": "^0.1.2",
"underscore": "^1.8.3",
"winston": "^2.2.0"
},
"devDependencies": {
"nodemon": "^1.9.1",
"opener": "^1.4.1"
}
}