forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "aries-framework",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"demo",
"samples/*"
],
"repository": {
"url": "https://github.com/hyperledger/aries-framework-javascript",
"type": "git"
},
"scripts": {
"check-types": "yarn check-types:build && yarn check-types:tests",
"check-types:tests": "tsc -p tsconfig.test.json --noEmit",
"check-types:build": "lerna exec tsc -- --noEmit",
"prettier": "prettier --ignore-path .gitignore '**/*.+(js|json|ts|md|yml|yaml)'",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"validate": "yarn lint && yarn check-types && yarn check-format",
"prepare": "husky install",
"run-mediator": "ts-node ./samples/mediator.ts",
"next-version-bump": "ts-node ./scripts/get-next-bump.ts"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/eslint": "^7.2.13",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.23",
"@types/node": "^15.14.4",
"@types/uuid": "^8.3.1",
"@types/varint": "^6.0.0",
"@types/ws": "^7.4.6",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"conventional-recommended-bump": "^6.1.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.17.1",
"husky": "^7.0.1",
"indy-sdk": "^1.16.0-dev-1636",
"jest": "^27.0.4",
"lerna": "^4.0.0",
"prettier": "^2.3.1",
"rxjs": "^7.2.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"tsyringe": "^4.6.0",
"typescript": "~4.3.0",
"ws": "^7.4.6"
},
"resolutions": {
"@types/node": "^15.14.4"
},
"engines": {
"node": ">= 14"
}
}