-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "focusing-manager",
"version": "1.0.0",
"description": "Gravitate-Health Focusing Manager",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev ./src/index.ts",
"build": "if [ -d \"$PWD/build\" ]; then rm -r \"$PWD/build\"; fi && tsc --incremental && cp -r ./src/templates ./build",
"start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gravitate-Health/focusing-manager.git"
},
"author": "Guillermo Mejías",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gravitate-Health/focusing-manager/issues"
},
"homepage": "https://github.com/Gravitate-Health/focusing-manager#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@kubernetes/client-node": "^0.18.1",
"axios": "^1.3.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"jsdom": "^22.1.0",
"liquidjs": "^10.7.1"
}
}