-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ts-node-samples-express-restful",
"version": "2.1.0-dribble",
"description": "Proof of Concept for a RESTful API made with Node.js 24 (LTS/Krypton), Express.js 5 in TypeScript.",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon",
"start": "node dist/server.js",
"build": "tsc",
"lint": "eslint .",
"lint:commit": "git log -1 --pretty=%B | npx commitlint --verbose",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --detectOpenHandles",
"coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"swagger:docs": "tsx src/docs/swagger-docs.ts",
"docker:build": "docker compose build",
"docker:up": "docker compose up",
"docker:down": "docker compose down -v"
},
"keywords": [],
"author": "Nano Taboada",
"license": "MIT",
"engines": {
"node": ">=24.13.0"
},
"dependencies": {
"body-parser": "^2.2.2",
"cors": "^2.8.6",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"express-validator": "^7.3.2",
"helmet": "^8.1.0",
"node-cache": "^5.1.2",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"sequelize": "^6.37.8",
"sqlite3": "^6.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@types/body-parser": "^1.19.6",
"@types/cors": "^2.8.19",
"@types/eslint": "^9.6.1",
"@types/express": "^5.0.6",
"@types/express-rate-limit": "^6.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.2",
"@types/sequelize": "^6.12.0",
"@types/supertest": "^7.2.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.32.1",
"commitlint": "^20.5.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"jest": "^30.3.0",
"nodemon": "^3.1.14",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}