-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "tracedata-microservice",
"main": "dist/lib/CoreLib.js",
"types": "dist/lib/CoreLib.d.ts",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "npx nodemon --legacy-watch server.ts",
"build": "rm -rf ./dist && npx tsc",
"build-commit": "npm run build && npm run git-push",
"git-push": "git add . && git commit -m 'updated lib' && git push",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/btoa": "^1.2.3",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/sha1": "^1.1.3",
"axios": "^0.27.2",
"btoa": "^1.2.1",
"clm-core": "git+https://github.com/fraunhoferfokus/clm-core.git#main",
"clm-ext-service_providers": "git+https://github.com/fraunhoferfokus/clm-ext-service_providers.git#main",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"sha1": "^1.1.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}