-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "ts-express-vidly",
"version": "1.0.0",
"description": "This is rental movie api",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:dev": "nodemon index.ts",
"test": "jest --config jest.config.ts --watchAll --verbose --detectOpenHandles"
},
"keywords": [],
"author": "Hossein Rezaei",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "5.0.2",
"@types/compression": "^1.7.5",
"@types/config": "3.3.4",
"@types/express": "4.17.21",
"@types/helmet": "4.0.0",
"@types/jest": "^29.5.12",
"@types/joi": "13.6.3",
"@types/jsonwebtoken": "9.0.6",
"@types/lodash": "4.17.1",
"@types/mongoose": "5.11.97",
"@types/morgan": "1.9.9",
"@types/node": "20.12.8",
"@types/supertest": "^6.0.2",
"nodemon": "3.1.0",
"supertest": "^7.0.0"
},
"dependencies": {
"@babel/preset-typescript": "^7.24.1",
"bcrypt": "5.1.1",
"compression": "^1.7.4",
"config": "3.3.11",
"debug": "4.3.4",
"express": "4.19.2",
"express-async-errors": "3.1.1",
"helmet": "7.1.0",
"jest": "^29.7.0",
"joi": "13.0.1",
"joi-objectid": "4.0.2",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"moment": "^2.30.1",
"mongoose": "^8.3.4",
"morgan": "1.9.0",
"pug": "3.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"winston": "^3.13.0",
"winston-mongodb": "^5.1.1"
},
"nodemonConfig": {
"events": {
"start": "echo '--------------------\n'& clear || cls"
}
}
}