-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1014 Bytes
/
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
{
"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"
},
"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.19.2",
"express-session": "1.18.1",
"json-refs": "3.0.15",
"jsondiffpatch": "0.6.0",
"lodash.isequal": "4.5.0",
"ts-node": "10.9.2"
},
"devDependencies": {
"@eslint/js": "9.9.1",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/lodash.isequal": "4.5.8",
"@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",
"typescript": "5.5.4",
"typescript-eslint": "8.2.0"
}
}