-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
42
43
44
45
46
47
48
49
50
{
"name": "monika-alert-simulator",
"version": "1.0.0",
"description": "A dummy server for simulate Monika incident or recovery alert ",
"scripts": {
"build": "tsc",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"format:check": "prettier --config .prettierrc 'src/**/*.ts' --check",
"lint": "eslint . --ext .ts",
"start": "npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperjumptech/monika-alert-simulator.git"
},
"keywords": [
"monika",
"incident",
"recovery"
],
"authors": [
"Nico Prananta <[email protected]>",
"Denny Pradipta <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hyperjumptech/monika-alert-simulator/issues"
},
"homepage": "https://github.com/hyperjumptech/monika-alert-simulator#readme",
"volta": {
"node": "18.17.0"
},
"dependencies": {
"@fastify/swagger": "^8.8.0",
"@fastify/swagger-ui": "^1.9.3",
"dotenv": "^16.4.5",
"fastify": "^4.21.0"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}