-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@jolocom/jolocom-example-service",
"version": "0.1.0",
"main": "app.js",
"repository": "https://github.com/jolocom/jolocom-example-service.git",
"author": "Jolocom Dev <dev@jolocom.com>",
"engines": {
"node": ">=10"
},
"license": "Apache-2.0",
"files": [
"js"
],
"scripts": {
"start": "nodemon",
"debug": "nodemon --exec \"node --inspect -r ts-node/register ./src/app.ts\"",
"build": "tsc -p ./tsconfig.json",
"test": "jest",
"format": "prettier --write {src,tests}/**/*.ts",
"dotenv-init": "cp ./.env.dist .env"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/express": "^4.17.12",
"@types/node": "^16.0.0",
"@types/qrcode": "^1.4.1",
"@types/uuid": "^8.3.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.0.6",
"nodemon": "^2.0.9",
"prettier": "2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@jolocom/oas3-tools-object-oriented": "jolocom/oas3-tools-object-oriented#jolocom-oas3-tools-object-oriented-v0.1.2-gitpkg",
"@jolocom/sdk": "^1.3.1",
"@jolocom/sdk-password-store-filesystem": "^0.2.2",
"@jolocom/sdk-storage-typeorm": "^4.2.0",
"app-root-path": "^3.0.0",
"class-transformer": "^0.4.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"inversify": "^5.1.1",
"inversify-express-utils": "^6.3.2",
"jolocom-lib": "^5.2.1",
"log4js": "^6.3.0",
"qrcode": "^1.4.4",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "^0.2.34",
"uuid": "^8.3.2"
}
}