-
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.26 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.26 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": "cat_service",
"version": "1.0.3",
"description": "A REST API sample app to manage data about cats",
"author": "Julio Carpio <julio_carpio4@hotmail.com>",
"main": "index.ts",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc",
"start": "npm run build && node dist/app/index.js",
"debug": "npm run build && node --inspect dist/app/index.js",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"dependencies": {
"awilix": "^7.0.3",
"awilix-express": "^7.0.0",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"express": "^4.16.1",
"jsonschema": "^1.4.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@eslint/json": "^0.12.0",
"@eslint/markdown": "^6.5.0",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"@types/uuid": "^10.0.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"jest": "^29.0.3",
"nodemon": "2.0.19",
"prettier": "3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
}
}