-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "node.js-typescript",
"version": "1.0.0",
"description": "A delightful way to building a Node.js RESTful API Services with beautiful code written in TypeScript",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts"
},
"author": "Usaid Aqeel",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"envalid": "^8.0.0",
"express": "^4.21.1",
"express-useragent": "^1.0.15",
"express-validator": "^7.0.1",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.1",
"morgan": "^1.10.0",
"request-ip": "^3.3.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/express-useragent": "^1.0.5",
"@types/jsonwebtoken": "^9.0.8",
"@types/mongoose-unique-validator": "^1.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^20.8.0",
"@types/request-ip": "^0.0.41",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}