-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2 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
{
"name": "traceability-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"compilerOptions": {
"module": "CommonJS"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon start",
"test": "jest --watchAll"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/**/*.test.ts"
],
"verbose": true,
"forceExit": true
},
"keywords": [],
"author": "Quyen Phan (quyenpt03)",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.7",
"@types/node-cron": "^3.0.11",
"@types/qrcode": "^1.5.2",
"@types/swagger-jsdoc": "^6.0.3",
"@types/swagger-ui-express": "^4.1.6",
"@types/validator": "^13.11.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^1.40.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.2.0",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.11",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"path": "^0.12.7",
"qrcode": "^1.5.3",
"sharp": "^0.32.5",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"validator": "^13.11.0",
"winston": "^3.13.0"
}
}