-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.66 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.66 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "backend-crud",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"test": "jest",
"test:unit": "jest --config jest.config.ts",
"test:integration": "jest --config jest.config.ts tests/integration",
"test:e2e": "jest --config jest.config.ts tests/e2e",
"test:coverage": "dotenv -e .env.test -- jest --config jest.config.ts --coverage",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"prisma": {
"schema": "src/infrastructure/database/prisma/schema.prisma"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.0.0",
"@prisma/client": "^6.12.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"redis": "^5.6.0",
"supertest": "^7.1.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsup": "^8.5.0",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"zod": "^4.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/cors": "^2.8.19",
"@types/express-rate-limit": "^5.1.3",
"@types/helmet": "^0.0.48",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^24.0.15",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"dotenv-cli": "^9.0.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"prisma": "^6.12.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}