forked from jolocom/jolocom-example-service
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.82 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
57
58
59
60
{
"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/server.ts\"",
"build": "node generate-schemas.js && tsc --rootDir src -p .",
"test": "jest",
"dotenv-init": "cp ./.env.dist .env",
"generate-schemas": "node generate-schemas.js",
"lint": "eslint src tests --ext .ts",
"format": "prettier --write \"{src,tests}/**/*.ts\""
},
"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",
"@types/jest": "^27.4.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"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",
"ts-jest": "^27.1.4",
"supertest": "^6.2.2"
},
"dependencies": {
"@jolocom/oas3-tools-object-oriented": "jolocom/oas3-tools-object-oriented#jolocom-oas3-tools-object-oriented-v0.1.4-gitpkg",
"app-root-path": "^3.0.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",
"log4js": "^6.3.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"openapi-typescript-validator": "^3.2.0",
"ajv": "^8.0.0",
"ajv-formats": "^2.0.0",
"express-openapi-validator": "^4.13.2"
}
}