forked from auchenberg/pullrequest-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 685 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 685 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
{
"name": "nodejs-shopping-cart",
"version": "1.0.0",
"author": "George Tsopouridis",
"email": "gtsopour@gmail.com",
"private": false,
"scripts": {
"start": "node ./bin/www",
"start_azure_debug": "if [[ ${APPSVC_TUNNEL_PORT} != \"\" ]]; then node --inspect=0.0.0.0:$APPSVC_TUNNEL_PORT ./bin/www; else npm run start; fi"
},
"description": "Shopping cart utility",
"dependencies": {
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"express": "~4.15.2",
"express-session": "^1.15.3",
"hbs": "~4.0.1",
"morgan": "~1.8.1",
"serve-favicon": "~2.4.2"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}