-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 895 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": "holder-sdk-demo",
"version": "1.1.0",
"description": "A demo app to demonstrate how to use the @cds-au/holder-sdk function ",
"main": "app.js",
"scripts": {
"start": "tsc && node ./dist/app.js",
"build": "tsc ",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon"
},
"keywords": [
"nodejs",
"typescript"
],
"author": "Tomas Schier",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"nodemon": "^2.0.13",
"ts-node": "^10.3.0",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/body-parser": "^1.19.2",
"@cds-au/holder-sdk": "2.0.1",
"@types/consumer-data-standards": "7.1.4",
"@types/express-serve-static-core": "^4.17.30",
"body-parser": "^1.20.0",
"express": "^4.17.1",
"mongodb": "^4.13.0",
"typedi": "^0.10.0"
}
}