-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "statusapi",
"version": "2.3.12",
"description": "Server that performs tests to check if services are online",
"scripts": {
"test": "jest --config='./tests/jest.config.js'",
"dev": "npm run build && node build/index.js",
"lint": "eslint -c ./configuration/.eslintrc --ext .ts ./ts",
"start": "node build/index.js",
"build": "tsc --build ./configuration/tsconfig.json"
},
"author": "Domipas",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.5",
"@types/node-schedule": "^2.1.5",
"@types/ping": "^0.4.4",
"@types/supertest": "^2.0.16",
"cors": "^2.8.5",
"dotenv": "^16.3.2",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"mylas": "^2.1.13",
"node-schedule": "^2.1.1",
"ping": "^0.4.4",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2"
},
"repository": {
"type": "git",
"url": "github:Domipas/statusapi"
},
"engines": {
"node": ">=12.0.0"
}
}