-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 3.37 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
{
"name": "ceramic-integration-tests",
"version": "1.0.0",
"description": "Integration tests for the Ceramic Network",
"author": "Spencer T Brody <[email protected]>",
"license": "(APACHE-2.0 OR MIT)",
"bugs": {
"url": "https://github.com/3box/ceramic-integration-tests/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/ceramic-integration-tests.git"
},
"keywords": [
"ceramic",
"3box",
"testing"
],
"homepage": "https://github.com/3box/ceramic-integration-tests#readme",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "node_modules/.bin/tsc -p tsconfig.json",
"format": "./node_modules/.bin/prettier --write 'src/**/*{.ts,.tsx,.js}' && ./node_modules/.bin/prettier --write 'ci/*{.ts,.tsx,.js}'",
"lint": "./node_modules/.bin/eslint --fix ./src --ext .js,.jsx,.ts,.tsx",
"prebuild": "npm run clean",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --config jest.config.json --runInBand --verbose",
"test:ci": "node --experimental-vm-modules ./node_modules/.bin/jest --config jest.config.ci.json --runInBand --verbose --forceExit",
"clean": "rm -rf ./build"
},
"dependencies": {
"@3id/did-provider": "^0.4.1",
"@aws-sdk/client-api-gateway": "^3.150.0",
"@aws-sdk/client-ecs": "^3.150.0",
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@ceramicnetwork/3id-did-resolver": "^5.9.0-nightly.20240425003456.0",
"@ceramicnetwork/cli": "^5.9.0-nightly.20240425003456.0",
"@ceramicnetwork/common": "^5.8.0-nightly.20240425003456.0",
"@ceramicnetwork/common-test-utils": "^3.9.0-nightly.20240425003456.0",
"@ceramicnetwork/core": "^5.9.0-nightly.20240425003456.0",
"@ceramicnetwork/http-client": "^5.9.0-nightly.20240425003456.0",
"@ceramicnetwork/ipfs-daemon": "^5.9.0-nightly.20240425003456.0",
"@ceramicnetwork/stream-handler-common": "^4.8.0-nightly.20240425003456.0",
"@ceramicnetwork/stream-model": "^4.8.0-nightly.20240425003456.0",
"@ceramicnetwork/stream-tile": "^5.8.0-nightly.20240425003456.0",
"@ceramicnetwork/streamid": "^5.0.1-nightly.20240425003456.0",
"@jest/globals": "^29.7.0",
"@jest/reporters": "^29.7.0",
"@stablelib/random": "^1.0.2",
"@stablelib/sha256": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"aws-sdk": "^2.1546.0",
"did-jwt": "^6.9.0",
"dids": "^5.0.2",
"eslint": "^8.7.0",
"eslint-config-3box": "^0.4.1",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^25.7.0",
"ipfs-http-client": "^60.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"key-did-provider-ed25519": "^4.0.2",
"key-did-resolver": "^4.0.0",
"kubo-rpc-client": "^3.0.1",
"node-config-ts": "^3.1.0",
"node-jq": "^2.3.3",
"rxjs": "^7.8.0",
"tmp-promise": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"uint8arrays": "^5.0.1",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"keyv": "^4.5.0",
"prettier": "^3.2.4"
},
"prettier": "eslint-config-3box/prettier.config"
}