-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "node-express-ts-backend",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"build": "tsc",
"start": "node -r module-alias/register dist/app.js",
"dev": "nodemon -r tsconfig-paths/register src/app.ts"
},
"keywords": [],
"author": "Lennon Benedict Jansuy",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"module-alias": "^2.2.3",
"mongodb": "^6.9.0",
"nodemailer": "^6.9.15"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"_moduleAliases": {
"@routes": "dist/routes",
"@utils": "dist/utils",
"@controllers": "dist/controllers",
"@graphql": "dist/graphql",
"@mongodb": "dist/mongodb",
"@hooks": "dist/hooks",
"@proptypes": "dist/types",
"@services": "dist/services"
}
}