-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 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
{
"name": "credo-ts-indy-vdr-proxy",
"private": true,
"license": "Apache-2.0",
"description": "Monorepo containing Indy VDR Proxy client and server for Credo",
"workspaces": {
"packages": [
"packages/*"
]
},
"repository": {
"url": "https://github.com/2060-io/aries-javascript-indy-vdr-proxy",
"type": "git"
},
"scripts": {
"check-types": "yarn workspaces foreach --all run tsc --noEmit -p tsconfig.build.json",
"prettier": "prettier '**/*.+(js|json|ts|md|yml|yaml)'",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"validate": "yarn lint && yarn check-types && yarn check-format",
"prepare": "husky install"
},
"devDependencies": {
"@credo-ts/askar": "^0.5.11",
"@credo-ts/core": "^0.5.11",
"@credo-ts/node": "^0.5.11",
"@hyperledger/anoncreds-nodejs": "^0.2.4",
"@hyperledger/anoncreds-shared": "^0.2.4",
"@hyperledger/aries-askar-nodejs": "^0.2.3",
"@hyperledger/aries-askar-shared": "^0.2.3",
"@types/eslint": "^8.2.1",
"@types/jest": "^26.0.23",
"@types/node": "^16.7.10",
"@types/ws": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.1",
"jest": "^27.0.4",
"nock": "^13.5.4",
"node-fetch": "^3.3.2",
"prettier": "^2.3.1",
"ts-jest": "^27.0.4",
"ts-node": "^10.8.1",
"tsconfig-paths": "^3.10.1",
"typescript": "~4.9.5"
},
"engines": {
"node": ">= 18"
},
"packageManager": "yarn@4.5.0"
}