forked from FlipWebApps/radix-example-workshop-mhew
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 670 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 670 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
{
"name": "echo",
"version": "0.0.1",
"description": "Simple echo module",
"private": true,
"scripts": {
"start": "node ./bin/www",
"debug": "DEBUG=* node ./node_modules/nodemon/bin/nodemon ./bin/www",
"dev": "node ./node_modules/nodemon/bin/nodemon ./bin/www",
"lint": "node ./node_modules/eslint/bin/eslint.js . --ext .js"
},
"author": "Lars Kaare Skjorestad",
"license": "MIT",
"dependencies": {
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"morgan": "~1.9.0"
},
"devDependencies": {
"eslint": "^5.12.1",
"nodemon": "^1.18.9"
}
}