-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 KB
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
{
"name": "emd-health-checker",
"version": "1.0.0",
"description": "EngagedMD Health Checker Application",
"private": true,
"scripts": {
"start:dev": "ts-node src/server/server.ts",
"start:prod": "node build/server/server.js",
"clean-dist": "rimraf ./build",
"clean": "npm run clean-dist && tsc --build . --clean",
"copy-assets": "ts-node lib/copyAssets.ts",
"build": "npm run clean && tsc --project ./ && npm run copy-assets"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"moment": "^2.29.4",
"rimraf": "^4.0.7",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/shelljs": "^0.8.11",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}