-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "gaia-x-signer-tool",
"version": "1.0.0",
"description": "",
"main": "build/server.js",
"scripts": {
"build": "npx tsc",
"detect-secrets": "detect-secrets-launcher **/*.ts",
"lint:check": "eslint \"./src/**/*.ts\"",
"lint:fix": "eslint --fix .",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/server.js\"",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@commitlint/config-conventional": "^17.6.7",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"detect-secrets": "^1.0.6",
"did-resolver": "^4.1.0",
"dotenv": "^16.3.1",
"eslint-plugin-more": "^1.0.5",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"he": "^1.2.0",
"http-status-codes": "^2.2.0",
"husky": "^8.0.3",
"jose": "^4.13.1",
"jsonld": "^5.2.0",
"kafkajs": "^2.2.4",
"lint-staged": "^13.2.3",
"media-typer": "^1.1.0",
"node-vault": "^0.10.2",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.0",
"web-did-resolver": "^2.0.23",
"winston": "^2.4.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@types/express": "^4.17.17",
"@types/he": "^1.2.0",
"@types/jest": "^29.5.3",
"@types/jsonld": "^1.5.8",
"@types/media-typer": "^1.1.1",
"@types/node": "^20.4.7",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"commitlint-config-jira": "^1.6.4",
"commitlint-plugin-jira-rules": "^1.6.4",
"concurrently": "^8.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 100000,
"testMatch": [
"**/?(*.)+(test).ts"
]
},
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint",
"detect-secrets-launcher **/*.ts"
]
}
}