-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "trullo",
"version": "1.0.0",
"description": "trullo",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"typescript": "npx tsx watch ./src/server.ts",
"dist": "cross-env NODE_ENV=production node ./dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/nodemailer": "^6.4.16",
"@types/validator": "^13.12.2",
"cross-env": "^7.0.3",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.19.0",
"typescript": "^5.6.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.3",
"morgan": "^1.10.0",
"nodemailer": "^6.9.15",
"validator": "^13.12.0"
}
}