-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 818 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 818 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
{
"name": "wp-api-nodejs",
"version": "1.0.0",
"description": "Access wordpress api using express, request and async",
"main": "server.js",
"scripts": {
"test": "server.js",
"dev": "nodemon server.js",
"start": "node server.js"
},
"author": "Sherwin Dapito",
"license": "ISC",
"dependencies": {
"async": "^2.4.1",
"body-parser": "^1.17.2",
"bootstrap": "^3.3.7",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.6",
"express": "^4.15.3",
"express-session": "^1.15.3",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"mongoose": "^4.10.7",
"morgan": "^1.8.2",
"passport": "^0.3.2",
"passport-oauth2": "^1.4.0",
"request": "^2.81.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}