-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
{
"name": "backend-typescript-pern-stack",
"version": "1.0.0",
"description": "Backend TypeScript PERN Stack",
"scripts": {
"dev": "nodemon",
"lint": "eslint . --ext .ts",
"migration:create": "NODE_ENV=local npm run typeorm -- migration:create -n",
"setup:local": "NODE_ENV=local npm run typeorm -- migration:run",
"setup:test": "NODE_ENV=test npm run typeorm -- migration:run",
"test": "NODE_ENV=test jest -i",
"test:coverage": "NODE_ENV=test jest --coverage",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"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",
"winston": "^3.14.2",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@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/faker": "^6.6.9",
"@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",
"faker": "^6.6.6",
"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",
"typescript": "^5.5.4"
}
}