forked from hub-dela/health-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 894 Bytes
/
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
{
"name": "health-app",
"version": "1.0.0",
"description": "health app",
"main": "index.js",
"scripts": {
"test": "echo 'no tests here'",
"start": "node index.js",
"compile": "npm i && ncc build index.js --license licenses.txt --out dist",
"dock": "npm run compile && docker build -f Dockerfile .",
"dock_run": "docker run -d --name health -p 4000:4000",
"ql_init": "codeql pack init -d . codeql",
"ql_ref": "codeql pack add --dir ./codeql codeql/javascript-all",
"ql_db": "codeql database create codeql/db -s . -l javascript",
"ql_all": "npm run ql_init && npm run ql_ref && npm run ql_db"
},
"author": "hub-dela",
"license": "MIT",
"dependencies": {
"express": "^4.19.2",
"express-handlebars": "^7.1.2",
"express-promise-router": "^4.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"dotenv": "^16.4.5"
}
}