-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "server",
"version": "1.0.0",
"description": "backend server",
"main": "index.js",
"scripts": {
"test": "npm run test",
"build": "tsc",
"dev": "nodemon --exec ts-node index.ts",
"start": "node dist/index.js",
"pm2": "pm2 start ecosystem.config.js --env production",
"reload": "pm2 reload ecosystem.config.js --env production",
"stop": "pm2 stop ecosystem.config.js --env production",
"delete": "pm2 delete ecosystem.config.js --env production"
},
"author": "Amir Ahmadi",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.502.0",
"@aws-sdk/credential-provider-env": "^3.502.0",
"@faker-js/faker": "^8.4.0",
"@sendgrid/mail": "^8.1.0",
"@types/node": "^20.11.10",
"archiver": "^6.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-rate-limit": "^7.1.5",
"joi": "^17.12.0",
"lodash": "^4.17.21",
"mongodb": "^6.3.0",
"mongoose": "^8.1.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.3",
"openapi-typescript-codegen": "^0.27.0",
"pm2": "^5.3.1",
"prettier": "^3.2.5",
"ramda": "^0.29.1",
"ts-node": "^10.9.2",
"unzipper": "^0.10.14"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/lodash": "^4.14.202",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/ramda": "^0.29.10",
"@types/unzipper": "^0.10.9",
"husky": "^9.0.10",
"tsc-alias": "^1.8.8"
}
}