-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 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
{
"name": "mybrandbackend-ts",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start:dev": "nodemon ./index.ts",
"test": "jest ./src/tests/testing.test.ts --detectOpenHandles --forceExit",
"coveralls": "jest ./src/tests/testing.test.ts --coverage --forceExit --detectOpenHandles && cat ./coverage/lcov.info | coveralls "
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/http-status-codes": "^1.2.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.25",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"coveralls": "^3.1.1",
"express": "^4.18.3",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@types/multer": "^1.4.11",
"babel-node": "^0.0.1-security",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.0.3",
"cors": "^2.8.5",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.0",
"path": "^0.12.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"test-jest": "^1.0.1"
}
}