forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.23 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
{
"name": "credo-ts",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"demo",
"demo-openid",
"samples/*"
],
"packageManager": "[email protected]",
"repository": {
"url": "https://github.com/openwallet-foundation/credo-ts",
"type": "git"
},
"scripts": {
"check-types": "pnpm check-types:build && pnpm check-types:tests",
"check-types:tests": "tsc -p tsconfig.test.json --noEmit",
"check-types:build": "pnpm -r --parallel exec tsc --noEmit",
"prettier": "prettier --ignore-path .prettierignore '**/*.+(js|json|ts|md|yml|yaml)'",
"format": "pnpm prettier --write",
"check-format": "pnpm prettier --list-different",
"clean": "pnpm -r --parallel run clean",
"build": "pnpm -r --parallel run build",
"test:unit": "jest --testPathIgnorePatterns 'e2e.test.ts$'",
"test:e2e": "jest --testMatch '**/?(*.)e2e.test.ts'",
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"validate": "pnpm lint && pnpm check-types && pnpm check-format",
"run-mediator": "ts-node ./samples/mediator.ts",
"release": "pnpm build && pnpm changeset publish --no-git-tag"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@hyperledger/aries-askar-nodejs": "^0.2.3",
"@jest/types": "^29.6.3",
"@types/bn.js": "^5.1.5",
"@types/cors": "^2.8.10",
"@types/eslint": "^8.21.2",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.12",
"@types/node": "^18.18.8",
"@types/uuid": "^9.0.1",
"@types/varint": "^6.0.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"bn.js": "^5.2.1",
"cors": "^2.8.5",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-workspaces": "^0.8.0",
"express": "^4.17.1",
"jest": "^29.7.0",
"prettier": "^2.3.1",
"rxjs": "^7.8.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.0.0",
"tsyringe": "^4.8.0",
"typescript": "~5.5.2",
"ws": "^8.13.0"
},
"resolutions": {
"@types/node": "18.18.8"
},
"engines": {
"node": ">=18"
}
}