forked from ACM-Thapar/Event-Coordinator-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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": "event-coordinator",
"version": "1.0.0",
"description": "Event Coordination backend by ACM",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"build": "tsc",
"postInstall": "npm run build"
},
"keywords": [],
"author": "ACM Thapar",
"license": "ISC",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.6",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"envalid": "^8.0.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"module-alias": "^2.2.3",
"mongoose": "^8.0.3",
"morgan": "^1.10.0"
},
"_moduleAliases": {
"@resources": "dist/resources",
"@utils": "dist/utils",
"@middleware": "dist/middleware",
"@controllers": "dist/controllers"
}
}