-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.65 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.65 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
{
"name": "workforce",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"type": "commonjs",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^22.13.10",
"@types/uuid": "^10.0.0",
"jest": "^30.2.0",
"supertest": "^7.1.4",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.8.2"
},
"dependencies": {
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/memory-cache": "^0.2.6",
"amqplib": "^0.10.9",
"bcrypt": "^6.0.0",
"body-parser": "^1.20.3",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-rate-limit": "^8.1.0",
"helmet": "^8.1.0",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"memory-cache": "^0.2.0",
"morgan": "^1.10.1",
"mysql2": "^3.15.1",
"redis": "^5.8.3",
"reflect-metadata": "^0.2.2",
"typeorm": "0.3.27",
"uuid": "^13.0.0"
},
"scripts": {
"start": "ts-node src/index.ts",
"start:worker": "ts-node src/worker.ts",
"dev": "tsx --watch --env-file .env src/index.ts",
"dev:worker": "tsx --watch --env-file .env src/worker.ts",
"typeorm": "typeorm-ts-node-commonjs",
"migration:generate": "typeorm-ts-node-commonjs migration:generate -d src/data-source.ts src/migration/migration",
"migration:run": "typeorm-ts-node-commonjs migration:run -d src/data-source.ts",
"test:queue": "ts-node src/scripts/testLeaveQueue.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
}
}