forked from openwallet-foundation/credo-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 KB
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
{
"name": "aries-framework-javascript",
"version": "1.0.0",
"license": "Apache-2.0",
"main": "build/lib/index.js",
"types": "build/lib/index.d.ts",
"files": [
"build/lib"
],
"scripts": {
"compile": "tsc",
"lint": "eslint --ignore-path .gitignore '**/*.+(js|ts)'",
"prettier": "prettier --ignore-path .gitignore '**/*.+(js|json|ts)'",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"test": "DEBUG=aries-framework-javascript jest --verbose",
"dev": "ts-node-dev --respawn --transpileOnly ./src/samples/mediator.ts",
"prod:start": "node ./build/samples/mediator.js",
"prod:debug": "DEBUG=aries-framework-javascript yarn prod:start",
"prod:build": "rm -rf build && yarn compile",
"validate": "npm-run-all --parallel lint compile",
"prepack": "rm -rf build && yarn compile"
},
"dependencies": {
"await-poll": "^1.0.2",
"bn.js": "^5.1.3",
"buffer": "^6.0.2",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"debug": "^4.1.1",
"events": "^3.2.0",
"js-sha256": "^0.9.0",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/bn.js": "^4.11.6",
"@types/cors": "^2.8.7",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.10",
"@types/node-fetch": "^2.5.7",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"husky": "^4.2.5",
"indy-sdk": "^1.15.0",
"jest": "^26.4.2",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.0",
"rxjs": "^6.6.2",
"ts-jest": "^26.3.0 ",
"ts-node-dev": "^1.0.0-pre.61",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-push": "yarn validate"
}
}
}