-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.24 KB
/
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
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
92
93
94
95
{
"name": "typescript-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --watch src --exec 'ts-node' src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"typeorm": "typeorm-ts-node-commonjs -d src/core/db/connector.ts",
"migration:generate": "npm run typeorm migration:generate",
"migration:show": "npm run typeorm migration:show",
"migration:run": "npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert",
"migration:create": "typeorm-ts-node-commonjs migration:create",
"seeders": "ts-node src/seeders/runSeeders.ts",
"start:worker": "ts-node src/workers/index.ts",
"prepare": "husky install",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.10",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/winston": "^2.4.4",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.8.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"sqlite3": "^5.1.7",
"supertest": "^7.0.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.17.0"
},
"dependencies": {
"@bull-monitor/express": "^5.4.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"bullmq": "^5.10.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"flatted": "^3.3.1",
"inversify": "^6.0.2",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.0",
"pg": "^8.12.0",
"postgres": "^3.4.4",
"reflect-metadata": "^0.2.2",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20",
"winston": "^3.13.1",
"yamljs": "^0.3.0"
}
}