-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.4 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.4 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
{
"name": "backend-postgres-typescript-node-express",
"version": "1.0.0",
"description": "backend-postgres-typescript-node-express",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start:prod": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest -i",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"db:cli": "typeorm-ts-node-commonjs -d ./src/data-source.ts",
"db:migration:generate": "typeorm-ts-node-commonjs -d ./src/data-source.ts migration:generate ./src/packages/database/migrations/InitialMigration",
"db:migrate:run": "npm run db:cli -- migration:run",
"db:revert": "npm run db:cli -- migration:revert",
"db:schema:log": "npm run db:cli -- schema:log"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv-safe": "^9.1.0",
"express": "^4.20.0",
"express-joi-validation": "^5.0.1",
"express-promise-router": "^4.1.1",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"http-status": "^1.7.4",
"morgan": "^1.10.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20",
"uuid": "^11.1.0",
"winston": "^3.14.2",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@faker-js/faker": "^9.8.0",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/dotenv-safe": "^8.1.6",
"@types/express": "^4.17.21",
"@types/express-promise-router": "^3.0.0",
"@types/hapi__joi": "^17.1.14",
"@types/helmet": "^4.0.0",
"@types/http-status": "^1.1.2",
"@types/jest": "^29.5.12",
"@types/joi": "^17.2.3",
"@types/logform": "^1.10.1",
"@types/morgan": "^1.9.9",
"@types/node": "^22.3.0",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"jest": "^29.7.0",
"logform": "^2.6.1",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typeorm-ts-node-commonjs": "^0.3.20",
"typescript": "^5.5.4"
}
}