forked from nftstorage/nft.storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.89 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
{
"name": "api",
"version": "2.7.0",
"description": "NFT Storage API",
"private": true,
"type": "module",
"main": "dist/worker.js",
"scripts": {
"lt": "npm run lt:cluster & npm run lt:ipfs-proxy & npm run lt:postgrest",
"lt:cluster": "npx localtunnel --port 9094 --subdomain \"$(whoami)-cluster-api-nft-storage\"",
"lt:ipfs-proxy": "npx localtunnel --port 9095 --subdomain \"$(whoami)-ipfs-proxy-api-nft-storage\"",
"lt:postgrest": "npx localtunnel --port 3000 --subdomain \"$(whoami)-postgrest-nft-storage\"",
"deploy": "wrangler publish --env production",
"dev": "wrangler dev",
"test": "tsc && playwright-test \"test/**/*.spec.js\" --sw src/index.js",
"db-types": "./scripts/cli.js db-types"
},
"author": "Hugo Dias <[email protected]> (hugodias.me)",
"license": "MIT",
"dependencies": {
"@cfworker/json-schema": "^1.8.3",
"@ipld/car": "^3.1.16",
"@ipld/dag-cbor": "^6.0.9",
"@magic-sdk/admin": "^1.3.0",
"@nftstorage/ipfs-cluster": "^3.3.1",
"@supabase/postgrest-js": "^0.33.3",
"debug": "^4.3.2",
"just-safe-set": "^2.2.1",
"merge-options": "^3.0.4",
"multiformats": "^9.4.3",
"regexparam": "^2.0.0",
"toucan-js": "^2.4.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^2.2.0",
"@sentry/cli": "^1.67.1",
"@sentry/webpack-plugin": "^1.16.0",
"@types/debug": "^4.1.5",
"@types/mocha": "^9.0.0",
"@types/pg": "^8.6.1",
"buffer": "^6.0.3",
"cf-workers-idbkv": "^0.1.1",
"delay": "^5.0.0",
"dotenv": "^10.0.0",
"esbuild": "^0.12.15",
"execa": "^5.1.1",
"git-rev-sync": "^3.0.1",
"ipfs-unixfs-importer": "^9.0.3",
"npm-run-all": "^4.1.5",
"openapi-typescript": "^4.0.2",
"p-retry": "^4.6.1",
"pg": "^8.7.1",
"playwright-test": "^7.1.0",
"process": "^0.11.10",
"readable-stream": "^3.6.0",
"sade": "^1.7.4",
"smoke": "^3.1.1"
}
}