-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.95 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.95 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
{
"name": "shop-flow",
"version": "1.0.0",
"description": "",
"main": "dist/src/server.js",
"scripts": {
"start:dev": "nodemon src/server.ts",
"start": "node dist/src/server.js",
"build": "npm install && tsc -p src",
"test": "jest --no-cache --detectOpenHandles --forceExit",
"test:watch": "jest --watchAll --no-cache --detectOpenHandles --forceExit",
"test:coverage": "jest --coverage --no-cache --detectOpenHandles --forceExit"
},
"keywords": [],
"author": "Hossein Rezaei",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.10",
"@types/morgan": "^1.9.9",
"@types/ms": "^0.7.34",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.10",
"@types/nodemailer": "^6.4.16",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@types/validator": "^13.12.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"colors": "^1.4.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.1",
"express-validator": "^7.2.1",
"helmet": "^8.0.0",
"hpp": "^0.2.3",
"jest": "^30.0.4",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongodb-memory-server": "^10.0.0",
"mongoose": "^7.0.0",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^7.0.9",
"nodemon": "^3.1.4",
"pug": "^3.0.3",
"slugify": "^1.6.6",
"supertest": "^7.1.3",
"swagger-jsdoc": "^3.7.0",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"validator": "^13.12.0",
"xss": "^1.0.15"
},
"nodemonConfig": {
"events": {
"start": "echo '--------------------\n'& clear || cls"
}
}
}