-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 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
{
"name": "syslog-web-client",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.ts",
"dev-docker": "sudo docker-compose down; sudo docker image rm pysyslog-web-nginx:latest; sudo docker image rm pysyslog-web-api:latest; npx tsc && sudo docker-compose up -d",
"build-docker": "sudo docker-compose down; sudo docker image rm pysyslog-web-nginx:latest; sudo docker image rm pysyslog-web-api:latest; npx tsc && sudo docker-compose build",
"build": "npx tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/node": "^20.8.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.5.3",
"simple-body-validator": "^1.3.0"
}
}