forked from storacha/w3infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 4.04 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "w3infra",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "sst start",
"build": "sst build",
"check": "tsc --build",
"deploy": "sst deploy --outputs-file .test-env.json",
"remove": "sst remove",
"console": "sst console",
"lint": "tsc && eslint '**/*.js'",
"clean": "rm -rf dist node_modules package-lock.json ./*/{.cache,dist,node_modules}",
"test": "npm test -w billing -w upload-api -w carpark -w replicator -w roundabout -w filecoin -w indexer",
"test-integration": "ava --verbose --serial --timeout=660s --fail-fast test/*.test.js",
"fetch-metrics-for-space": "npm run fetch-metrics-for-space -w tools",
"follow-filecoin-receipt-chain": "npm run follow-filecoin-receipt-chain -w tools",
"d1-dynamo-migration": "npm run d1-dynamo-migration -w tools"
},
"devDependencies": {
"@chainsafe/libp2p-noise": "^15.0.0",
"@helia/unixfs": "^3.0.6",
"@ipld/car": "^5.2.6",
"@ipld/dag-ucan": "^3.0.1",
"@libp2p/identify": "^2.0.1",
"@libp2p/mplex": "^10.0.23",
"@libp2p/websockets": "^8.0.23",
"@multiformats/multiaddr": "^12.2.1",
"@tsconfig/node16": "^1.0.3",
"@types/git-rev-sync": "^2.0.0",
"@ucanto/client": "^9.0.1",
"@ucanto/core": "^10.0.1",
"@ucanto/interface": "^10.0.1",
"@ucanto/principal": "^9.0.1",
"@ucanto/transport": "^9.1.1",
"@ucanto/validator": "^9.0.2",
"@web-std/blob": "^3.0.4",
"@web-std/fetch": "^4.1.0",
"@web3-storage/access": "^20.0.0",
"@web3-storage/blob-index": "^1.0.2",
"@web3-storage/capabilities": "^17.2.0",
"@web3-storage/content-claims": "^5.1.0",
"@web3-storage/data-segment": "5.1.0",
"@web3-storage/filecoin-client": "^3.3.3",
"@web3-storage/upload-client": "^16.1.0",
"@web3-storage/w3up-client": "^14.1.1",
"ava": "^4.3.3",
"chalk": "4.1.2",
"constructs": "10.3.0",
"dotenv": "^16.0.3",
"git-rev-sync": "^3.0.2",
"hd-scripts": "^3.0.2",
"helia": "^4.2.1",
"libp2p": "1.5.2",
"lint-staged": "^13.0.3",
"mailslurp-client": "^15.17.2",
"multiformats": "^13.1.0",
"p-retry": "^6.2.0",
"p-wait-for": "^5.0.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@ipld/dag-json": "^10.1.5",
"@web-std/stream": "^1.0.3",
"@web3-storage/upload-api": "^18.0.2",
"aws-cdk-lib": "2.142.1",
"sst": "^2.40.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"extends": [
"./node_modules/hd-scripts/eslint/preact.js"
],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"unicorn/prefer-number-properties": "off",
"unicorn/new-for-builtins": "off",
"unicorn/no-null": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-array-reduce": "off",
"unicorn/no-await-expression-member": "off",
"unicorn/no-for-loop": "off",
"unicorn/prefer-export-from": "off",
"unicorn/prefer-object-from-entries": "off",
"unicorn/prefer-set-has": "off",
"unicorn/prefer-spread": "off",
"unicorn/catch-error-name": "off",
"unicorn/explicit-length-check": "off",
"unicorn/prefer-type-error": "off",
"unicorn/no-zero-fractions": "off",
"unicorn/expiring-todo-comments": "off",
"eqeqeq": "off",
"no-new": "off",
"no-void": "off",
"no-console": "off",
"no-continue": "off",
"no-loop-func": "off",
"no-warning-comments": "off",
"jsdoc/check-indentation": "off",
"jsdoc/require-hyphen-before-param-description": "off",
"react-hooks/rules-of-hooks": "off",
"react/no-danger": "off"
}
},
"workspaces": [
"billing",
"carpark",
"filecoin",
"indexer",
"replicator",
"roundabout",
"tools",
"ucan-invocation",
"upload-api"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false
}
}