-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.22 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
{
"name": "w3filecoin-infra",
"version": "0.0.0",
"private": true,
"type": "module",
"author": "Vasco Santos <[email protected]>",
"license": "Apache-2.0 OR MIT",
"scripts": {
"dev": "sst dev",
"build": "sst build",
"deploy": "sst deploy",
"remove": "sst remove",
"console": "sst console",
"lint": "tsc && eslint '**/*.js'",
"clean": "rm -rf dist node_modules ./*/{.cache,dist,node_modules}",
"test": "npm test -w packages/core",
"test-integration": "ava --verbose --serial --timeout=600s test/*.test.js"
},
"devDependencies": {
"@ipld/dag-ucan": "3.4.0",
"@sentry/serverless": "^7.52.1",
"@tsconfig/node16": "^1.0.3",
"@types/git-rev-sync": "^2.0.0",
"@types/node": "^18.11.18",
"@ucanto/client": "^9.0.1",
"@ucanto/core": "^10.0.1",
"@ucanto/principal": "^9.0.1",
"@ucanto/transport": "^9.1.1",
"@web3-storage/filecoin-client": "^3.3.3",
"@web3-storage/upload-api": "17.0.0",
"ava": "^5.3.0",
"aws-cdk-lib": "2.142.1",
"constructs": "10.3.0",
"dotenv": "^16.3.1",
"git-rev-sync": "^3.0.2",
"hd-scripts": "^3.0.2",
"lint-staged": "^13.0.3",
"p-wait-for": "^5.0.0",
"sst": "^2.43.7",
"typescript": "^4.9.4"
},
"dependencies": {
"@storacha/one-webcrypto": "^1.0.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"extends": [
"./node_modules/hd-scripts/eslint/index.js"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"unicorn/expiring-todo-comments": "off",
"unicorn/explicit-length-check": "off",
"unicorn/filename-case": "off",
"unicorn/prefer-set-has": "off",
"unicorn/prefer-spread": "off",
"unicorn/prefer-array-some": "off",
"unicorn/prefer-ternary": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-array-reduce": "off",
"unicorn/no-await-expression-member": "off",
"unicorn/no-zero-fractions": "off",
"unicorn/numeric-separators-style": "off",
"no-console": "off",
"no-new": "off",
"no-warning-comments": "off"
}
},
"workspaces": [
"packages/*"
]
}