-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 917 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
29
30
31
32
33
34
35
{
"name": "airfocus-automation",
"version": "0.1.0",
"scripts": {
"build": "tsc",
"build-docker": "docker build -t airfocus-automation:latest .",
"init": "ts-node -T ./init.ts",
"lint": "prettier . --check && tsc -p ./tsconfig.json --noEmit",
"lint-fix": "prettier . --write",
"start": "ts-node -T ./index.dev.ts",
"test": "vitest"
},
"license": "ISC",
"author": "airfocus GmbH",
"dependencies": {
"@ngrok/ngrok": "1.3.0",
"@types/body-parser": "1.19.5",
"@types/deep-equal": "1.0.4",
"@types/express": "4.17.21",
"axios": "1.7.2",
"body-parser": "1.20.2",
"deep-equal": "2.2.3",
"dotenv": "16.4.5",
"express": "4.19.2"
},
"devDependencies": {
"@ngrok/ngrok": "^1.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"prettier": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "5.4.5",
"vitest": "^1.6.0"
}
}