-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.18 KB
/
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
33
34
35
36
37
38
39
40
41
{
"name": "status-server",
"version": "0.1.0",
"description": "Monitoring service for endpoints",
"main": "app.js",
"scripts": {
"start": "ts-node index.ts",
"test": "NODE_ENV=test mocha -r ts-node/register --timeout 5000 test/**/*_spec.*",
"webapi": "ts-node -r dotenv/config tasks/run_web_api",
"healthchecker": "ts-node -r dotenv/config tasks/run_health_checker",
"core": "ts-node -r dotenv/config tasks/run_api_and_checker",
"app": "cd app && npm run dev",
"lint": "eslint ./src"
},
"author": "Adrian Mato (@adrianmg) and Ivan Guardado (@ivanguardado)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adrianmg/status-server.git"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"mongoose": "^5.7.5",
"node-dependency-injection": "^2.2.1",
"ping": "^0.2.2",
"typescript": "^3.2.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.0",
"eslint": "^5.9.0",
"mocha": "^5.2.0",
"node-mocks-http": "^1.7.3",
"should": "^13.2.3",
"ts-mockito": "^2.3.1",
"ts-node": "^7.0.1"
}
}