-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "node-with-metrics",
"version": "1.8.1",
"description": "Node with Metrics",
"exports": "./dist/index.js",
"repository": "https://github.com/houstonj1/node-with-metrics",
"author": "James Houston <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "nodemon --exec node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"lint": "eslint src/**/*.ts --fix && prettier --write .",
"lint:ci": "eslint src/**/*.ts --fix && prettier --check .",
"start": "node dist/index.js",
"test": "jest"
},
"dependencies": {
"express": "^4.21.2",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.0",
"@types/supertest": "^6.0.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}