forked from bpicori/monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "monitor-status-page",
"version": "1.0.5",
"description": "",
"main": "index.js",
"scripts": {
"prod": "node build/main.js",
"dev": "concurrently --kill-others --names \"BUILD,RUN\" -c \"bgBlue.bold,bgMagenta.bold\" \"tsc -w\" \"nodemon\"",
"build": "./node_modules/typescript/bin/tsc",
"build-package": "tsc && cp package.json lib/package.json",
"build-html": "node buildHtml.js",
"build:watch": "./node_modules/typescript/bin/tsc -w -p tsconfig.release.json",
"lint": "./node_modules/tslint/bin/tslint -t stylish --project \"tsconfig.json\" ",
"test": "TS_NODE_FILES=true ./node_modules/.bin/nyc ./node_modules/.bin/mocha --config .mocharc.unit.js",
"test:grep": "TS_NODE_FILES=true ./node_modules/.bin/mocha --config .mocharc.unit.js -g ",
"coverage": "./node_modules/.bin/nyc report",
"clean": "./node_modules/rimraf/bin.js build"
},
"dependencies": {
"axios": "^0.25.0",
"express": "^4.17.2",
"ioredis": "^4.28.5",
"kafkajs": "^1.15.0",
"moment": "^2.29.1",
"mongodb": "4.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/bson": "4.0.5",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.8",
"@types/mocha": "^9.1.0",
"@types/mongodb": "4.0.6",
"@types/node": "^17.0.15",
"@types/pug": "^2.0.6",
"@types/sinon": "^10.0.10",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@typescript-eslint/typescript-estree": "^5.10.2",
"chai": "^4.3.6",
"chai-shallow-deep-equal": "^1.4.6",
"concurrently": "^7.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"mocha": "^9.2.0",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sinon": "^13.0.1",
"supertest": "^6.2.2",
"ts-node": "^10.4.0",
"ts-sinon": "^2.0.2",
"tslint": "^5.20.1",
"typescript": "^4.5.5"
},
"keywords": [],
"author": "",
"license": "ISC"
}