-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.91 KB
/
package.json
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
{
"name": "azooghe",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"data:import": "ts-node src/data/seeder.ts -i",
"data:destroy": "ts-node src/data/seeder.ts -d",
"server": "nodemon src/server.ts",
"client": "npm run dev --prefix client",
"start:dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node src/dist/server.js",
"build": "npm i && npm i --prefix client && tsc -p src && npm run build --prefix client"
},
"keywords": [],
"author": "Hossein Rezaei",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.10",
"@types/ms": "^0.7.34",
"@types/nodemailer": "^6.4.16",
"@types/validator": "^13.12.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.5.1",
"colors": "^1.4.0",
"cookie-parser": "^1.4.7",
"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",
"helmet": "^8.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^7.0.0",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"pug": "^3.0.3",
"slugify": "^1.6.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"validator": "^13.12.0",
"xss": "^1.0.15"
},
"nodemonConfig": {
"events": {
"start": "echo '--------------------\n'& clear || cls"
}
}
}