-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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": "nodejs-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "nodemon server.ts",
"build": "rimraf ./build && tsc && cd ./build/src/ && mkdir certs && cd certs/ && openssl genrsa -out private_key.pem 4096 && openssl rsa -pubout -in private_key.pem -out public_key.pem",
"start": "node build/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.2.4",
"bcrypt": "^5.0.1",
"cloudinary": "^1.35.0",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"express-sslify": "^1.2.0",
"helmet": "^6.0.0",
"hpp": "^0.2.3",
"http-status": "^1.5.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.9.1",
"morgan": "^1.10.0",
"nanoid": "3.3.4",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.1",
"pino": "^7.8.0",
"pino-pretty": "^7.5.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^0.0.41",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-sslify": "^1.2.2",
"@types/hpp": "^0.2.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.21",
"@types/node-cron": "^3.0.7",
"@types/node-fetch": "^2.6.2",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.8.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}