-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 730 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 730 Bytes
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
{
"name": "log-server",
"version": "0.1.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"start": "tsc -p tsconfig.json && node dist/server.js",
"tsc": "tsc",
"test": "jest --forceExit"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.7.4",
"@types/request": "^2.48.12",
"typescript": "^5.6.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"mkdirp": "^3.0.1",
"moment": "^2.30.1",
"mongodb": "^6.9.0",
"morgan": "^1.10.0"
}
}