-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 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
{
"name": "perfsimnode",
"version": "1.0.0",
"description": "Performance Problem Simulator for Node.js - Educational diagnostic training tool",
"main": "dist/index.js",
"scripts": {
"dev": "node --expose-gc node_modules/ts-node-dev/lib/bin.js --respawn --transpile-only src/index.ts",
"build": "tsc && npm run copy-public",
"copy-public": "cp -r src/public dist/ || xcopy src\\public dist\\public /E /I /Y",
"start": "node --expose-gc dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\""
},
"keywords": [
"performance",
"diagnostics",
"azure",
"nodejs",
"training"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@azure/monitor-opentelemetry": "^1.15.1",
"applicationinsights": "^3.14.0",
"express": "^4.21.0",
"socket.io": "^4.8.3",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.8",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.0"
}
}