forked from Open-Attestation/oa-verify
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.63 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
88
89
90
{
"name": "@tradetrust-tt/tt-verify",
"version": "0.0.0-development",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/src/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:type",
"build:cjs": "tsc --module commonjs --outDir dist/cjs --project ./tsconfig.prod.json",
"build:esm": "tsc --module es2022 --outDir dist/esm --project ./tsconfig.prod.json",
"build:type": "tsc -d --emitDeclarationOnly --outDir dist/types",
"clean": "rm -rf dist/",
"commit": "git-cz",
"commit:retry": "npm run commit -- --retry",
"test:ci": "jest --runInBand",
"test": "NODE_OPTIONS=--max-old-space-size=2048 jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"generate:v3": "DEBUG=oa-verify* ts-node scripts/generate.v3.ts"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@tradetrust-tt/dnsprove": "^2.16.0",
"@tradetrust-tt/document-store": "^4.1.0",
"@tradetrust-tt/token-registry": "^5.1.0",
"@tradetrust-tt/tradetrust": "^6.10.0",
"axios": "^1.7.2",
"debug": "^4.3.1",
"did-resolver": "^3.1.0",
"ethers": "^5.7.2",
"ethr-did-resolver": "^4.3.3",
"node-cache": "^5.1.2",
"runtypes": "^6.3.0",
"web-did-resolver": "^2.0.4"
},
"overrides": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/prompt": "^19.3.1",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"commitizen": "^4.3.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"git-cz": "^4.9.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"msw": "^2.4.5",
"prettier": "^2.2.1",
"semantic-release": "^19.0.2",
"snyk": "^1.1293.0",
"ts-jest": "^29.2.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"ethers": "^5.7.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/TradeTrust/tt-verify.git"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
},
"prettier": {
"printWidth": 120
},
"snyk": true,
"engines": {
"node": ">=18.x"
}
}