-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "dicome",
"version": "1.0.0",
"main": "/dist/src/app.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"performance": "tsx performance/src/performanceTesting.ts"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "11.7.2",
"@types/express-session": "1.18.0",
"dotenv": "16.4.5",
"express": "^4.22.1",
"express-session": "^1.19.0",
"fast-xml-parser": "~5.6.0",
"json-refs": "3.0.15",
"jsondiffpatch": "^0.7.3",
"ts-node": "10.9.2"
},
"devDependencies": {
"@eslint/js": "9.9.1",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/node": "22.5.0",
"eslint": "9.9.1",
"globals": "^15.9.0",
"jest": "29.7.0",
"nodemon": "3.1.7",
"ts-jest": "29.2.5",
"tsx": "^4.21.0",
"typescript": "5.5.4",
"typescript-eslint": "8.2.0"
}
}