-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.48 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
73
74
75
76
77
78
{
"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": {
"predev": "npm run db:migrate",
"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",
"db:migrate": "sequelize-cli db:migrate",
"db:migrate:undo": "sequelize-cli db:migrate:undo",
"db:migrate:undo:all": "sequelize-cli db:migrate:undo:all",
"db:reset": "npm run db:migrate:undo:all && npm run db:migrate",
"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.3.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"express-validator": "^7.3.2",
"helmet": "^8.2.0",
"node-cache": "^5.1.2",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"sequelize": "^6.37.8",
"sequelize-cli": "^6.6.5",
"sqlite3": "^6.0.1",
"swagger-jsdoc": "^6.3.0",
"swagger-ui-express": "^5.0.1",
"uuid": "^14.0.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^21.0.2",
"@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": "^26.0.1",
"@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.62.0",
"@typescript-eslint/parser": "^8.32.1",
"commitlint": "^21.1.0",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"jest": "^30.4.2",
"nodemon": "^3.1.14",
"pino-pretty": "^13.1.3",
"prettier": "^3.9.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"tsx": "^4.22.4",
"typescript": "^5.9.3"
}
}