-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
45
46
47
48
49
{
"name": "backend",
"version": "1.0.0",
"description": "Visitor Entries Response System backend",
"main": "server.ts",
"scripts": {
"build": "swc ./backend -d dist",
"dev": "nodemon --exec node -r @swc-node/register server.ts",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@swc-node/register": "^1.9.2",
"@swc/cli": "^0.3.14",
"@swc/core": "^1.6.5",
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.6",
"@types/colors": "^1.2.1",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^22.1.0",
"@types/uuid": "^10.0.0",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "^1.7.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.1",
"morgan": "^1.10.0",
"uuid": "^10.0.0"
}
}