forked from rasolofonirina/node-express-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.42 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
43
44
45
{
"name": "log-dashboard",
"version": "0.0.0",
"private": true,
"scripts": {
"log-generator": "node ./log-generator/log-generator.js",
"web-app": "cross-env DEBUG=log-dashboard:server node ./bin/www",
"start": "npm-run-all --parallel log-generator web-app",
"test:module2": "cross-env NODE_ENV=test mocha --exit './test/module2/*.spec.js' || true",
"test:module3": "cross-env NODE_ENV=test mocha --exit './test/module3/*.spec.js' || true",
"test:module4": "cross-env NODE_ENV=test mocha --exit './test/module4/*.spec.js' || true",
"test:module5": "cross-env NODE_ENV=test mocha --exit './test/module5/*.spec.js' || true",
"test:module6": "cross-env NODE_ENV=test mocha --exit './test/module6/*.spec.js' || true"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-validator": "^6.2.0",
"http-errors": "~1.6.3",
"lodash": "^4.17.15",
"morgan": "~1.9.1",
"ws": "^7.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"cross-env": "^7.0.0",
"dot-object": "^2.1.3",
"jscodeshift": "^0.7.0",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.5",
"rewire": "^4.0.1",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"sinon-express-mock": "^2.2.1"
},
"mocha": {
"require": "./test/globals",
"ui": "bdd",
"exit": true,
"timeout": 10000
}
}