-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.67 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.67 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
92
93
94
95
96
97
98
{
"name": "@work-whiz/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "npx env-cmd -f ./.env nx serve",
"maildev": "maildev --web 1080 --smtp 1025",
"dev": "concurrently \"npm run maildev\" \"npm run start\"",
"build": "nx build",
"format": "nx format",
"lint": "nx lint",
"test": "nx test",
"test:coverage": "nx test --coverage"
},
"private": true,
"dependencies": {
"@bull-board/api": "^6.7.10",
"@bull-board/express": "^6.7.10",
"@logtail/node": "^0.5.2",
"@logtail/winston": "^0.5.2",
"argon2": "^0.41.1",
"axios": "^1.6.0",
"bull": "^4.16.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf-csrf": "^3.1.0",
"ejs": "^3.1.10",
"env-cmd": "^10.1.0",
"envalid": "^8.0.0",
"express": "4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"ioredis": "^5.6.0",
"ip": "^2.0.1",
"jest-stare": "^2.5.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mailgen": "^2.0.29",
"morgan": "^1.10.0",
"nodemailer": "^6.10.0",
"pg": "^8.14.1",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tslib": "^2.3.0",
"ua-parser-js": "^2.0.3"
},
"devDependencies": {
"@nx/esbuild": "22.1.3",
"@nx/eslint": "22.1.3",
"@nx/eslint-plugin": "22.1.3",
"@nx/jest": "22.1.3",
"@nx/js": "22.1.3",
"@nx/node": "22.1.3",
"@nx/workspace": "22.1.3",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/ejs": "^3.1.5",
"@types/express": "4.17.21",
"@types/ip": "^1.1.3",
"@types/jest": "30.0.0",
"@types/joi": "^17.2.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.9",
"@types/node": "~18.16.9",
"@types/nodemailer": "^6.4.17",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"concurrently": "^9.1.2",
"esbuild": "^0.25.5",
"eslint": "~8.57.0",
"eslint-config-prettier": "10.1.2",
"jest": "30.0.5",
"jest-environment-node": "^29.4.1",
"maildev": "^2.2.1",
"nx": "22.1.3",
"prettier": "^2.6.2",
"ts-jest": "29.4.5",
"ts-node": "10.9.1",
"typescript": "5.9.3",
"jest-util": "30.0.5"
},
"nx": {
"includedScripts": []
}
}