-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 917 Bytes
/
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
{
"name": "node_solid",
"version": "1.0.0",
"description": "This project is a demonstration of building a Node.js server using TypeScript while adhering to SOLID principles and clean architecture.",
"main": "src/server.ts",
"repository": "https://github.com/MuhdHanish/node_solid.git",
"author": "MuhdHanish <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "tsnd --transpile-only --respawn --ignore-watch node_modules src/server.ts"
},
"keywords": [
"server",
"node",
"express",
"typescript",
"SOLID principles",
"clean-architucture"
],
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.1",
"nodemailer": "^6.9.13",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^9.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
}
}