-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
{
"name": "@windingtree/orgid-validator-service",
"version": "2.0.0",
"description": "ORGiD validator",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"start:dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix && npx prettier --write .",
"prepare": "husky install",
"commit": "git-cz -S",
"redis": "docker run --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest"
},
"keywords": [
"orgid",
"ssi",
"did",
"resolver",
"validator",
"jwt"
],
"author": "Winding Tree Developers <dev@windingtree.com>",
"contributors": [
"Kostiantyn Smyrnov <kostysh@gmail.com>"
],
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"dotenv": "^16.0.3",
"typedi": "^0.10.0",
"reflect-metadata": "^0.1.13",
"@windingtree/org.id-utils": "^1.2.4",
"@windingtree/org.id-auth": "^1.2.4",
"@windingtree/org.id-resolver": "^3.2.2",
"@windingtree/org.json-schema": "^1.1.0",
"winston": "^3.8.2",
"@elastic/ecs-winston-format": "^1.3.1",
"winston-loki": "^6.0.6",
"ethers": "^5.7.2",
"helmet": "^6.0.1",
"cors": "^2.8.5",
"redis": "^4.5.1"
},
"devDependencies": {
"@types/node": "^18.11.15",
"@types/express": "^4.17.15",
"@types/cors": "^2.8.13",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/cli": "^17.3.0",
"eslint": "^8.25.0",
"ts-node": "^10.9.1",
"git-cz": "^4.9.0",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"lint-staged": "^13.1.0",
"typescript": "^4.9.4"
}
}