-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.37 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.37 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
70
71
72
73
74
75
76
77
78
79
{
"name": "api",
"version": "4.3.0",
"description": "NFT Storage API",
"private": true,
"type": "module",
"main": "dist/worker.js",
"scripts": {
"deploy": "wrangler publish --env production",
"predev": "./scripts/cli.js services start && ./scripts/cli.js db-sql --cargo --testing --reset && ./scripts/cli.js minio bucket create dotstorage-dev-0",
"dev": "miniflare dist/worker.js --watch --debug --env ../../.env",
"dev:persist": "PERSIST_VOLUMES=true npm run dev",
"build": "scripts/cli.js build",
"pretest": "tsc",
"test": "./docker/run-with-dependencies.sh ./scripts/run-test.sh",
"db-types": "./scripts/cli.js db-types"
},
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "(Apache-2.0 OR MIT)",
"dependencies": {
"@aws-sdk/client-s3": "^3.37.0",
"@cfworker/json-schema": "^1.8.3",
"@ipld/car": "^3.1.20",
"@ipld/dag-cbor": "^6.0.13",
"@ipld/dag-pb": "^2.1.16",
"@magic-sdk/admin": "1.4.0",
"@nftstorage/ipfs-cluster": "^5.0.1",
"@noble/ed25519": "^1.6.1",
"@supabase/postgrest-js": "^0.34.1",
"cardex": "^1.0.0",
"ipfs-car": "^0.6.1",
"it-last": "^2.0.0",
"merge-options": "^3.0.4",
"multiformats": "^9.6.4",
"nanoid": "^3.1.30",
"one-webcrypto": "^1.0.3",
"p-retry": "^5.1.1",
"regexparam": "^2.0.0",
"toucan-js": "^2.7.0",
"ucan-storage": "^1.3.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.17.0",
"@miniflare/core": "^2.10.0",
"@sentry/cli": "^1.71.0",
"@sentry/webpack-plugin": "^1.16.0",
"@types/assert": "^1.5.6",
"@types/debug": "^4.1.5",
"@types/git-rev-sync": "^2.0.0",
"@types/minio": "^7.0.13",
"@types/mocha": "^9.0.0",
"@types/pg": "^8.6.1",
"assert": "^2.0.0",
"ava": "^4.3.0",
"buffer": "^6.0.3",
"carbites": "^1.0.6",
"delay": "^5.0.0",
"dotenv": "^10.0.0",
"esbuild": "^0.13.13",
"execa": "^5.1.1",
"git-rev-sync": "^3.0.1",
"ipfs-unixfs-importer": "^9.0.3",
"miniflare": "^2.10.0",
"minio": "^7.0.28",
"npm-run-all": "^4.1.5",
"openapi-typescript": "^4.0.2",
"pg": "^8.7.1",
"playwright-test": "^7.2.1",
"process": "^0.11.10",
"readable-stream": "^3.6.0",
"sade": "^1.7.4",
"smoke": "^3.1.1",
"why-is-node-running": "^2.2.2"
},
"engines": {
"node": ">= 16.0"
}
}