-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 830 Bytes
/
package.json
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
{
"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",
"test": "mocha"
},
"author": "Lars Kaare Skjorestad",
"license": "MIT",
"dependencies": {
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"express-prom-bundle": "^5.0.2",
"http-errors": "~1.6.2",
"morgan": "~1.9.0",
"prom-client": "^11.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"supertest": "^3.4.2"
}
}