-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "@personalhealthtrain/station-simulator",
"author": {
"name": "Peter Placzek",
"email": "[email protected]",
"url": "https://tada5hi.net"
},
"license": "MIT",
"version": "1.1.0-0",
"description": "This project contains a basic station simulator",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"start": "node dist/index.js",
"dev": "cross-env TS_NODE=true NODE_OPTIONS=\"-r ts-node/register\" node src/index.ts",
"dev-watch": "ts-node-dev src/index.ts --respawn --transpileOnly",
"build": "rm -rf ./dist && tsc",
"test": ""
},
"dependencies": {
"@authup/core": "^0.37.1",
"@personalhealthtrain/central-common": "^2.4.0-alpha.0",
"hapic": "2.0.0",
"@hapic/harbor": "^2.0.0",
"@hapic/oauth2": "^2.0.0",
"@hapic/vault": "^2.0.0",
"bree": "^9.1.3",
"dockerode": "^3.3.5",
"dotenv": "^16.1.4"
},
"devDependencies": {
"@tada5hi/eslint-config-typescript": "^1.1.9",
"@types/dockerode": "^3.3.19",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}