forked from nftstorage/nftstorage.link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
{
"name": "edge-gateway",
"version": "1.11.2",
"description": "IPFS edge gateway for nft.storage",
"private": true,
"type": "module",
"main": "./dist/worker.mjs",
"scripts": {
"build": "node scripts/cli.js build",
"dev": "miniflare --watch --debug",
"deploy": "wrangler publish --env production",
"test": "npm run test:setup && npm-run-all -p -r mock:ipfs.io mock:cf-ipfs.com test:worker && npm run test:teardown",
"test:worker": "ava --verbose test/*.spec.js",
"test:setup": "npm run build && npm run docker:ipfs:start",
"test:teardown": "npm run docker:ipfs:stop",
"docker:ipfs:start": "node scripts/cli.js ipfs --start",
"docker:ipfs:stop": "node scripts/cli.js ipfs --stop",
"mock:ipfs.io": "smoke -p 9082 test/mocks/ipfs.io",
"mock:cf-ipfs.com": "smoke -p 9083 test/mocks/cf-ipfs.com"
},
"dependencies": {
"ipfs-core-utils": "^0.15.1",
"itty-router": "^2.4.5",
"multiformats": "^9.6.4",
"nanoid": "^3.1.30",
"p-any": "^4.0.0",
"p-map": "^5.3.0",
"p-retry": "^5.0.0",
"p-settle": "^5.0.0",
"p-some": "^5.0.0",
"toucan-js": "^2.5.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@sentry/cli": "^1.71.0",
"@web-std/fetch": "^4.0.0",
"ava": "^3.15.0",
"browser-env": "^3.3.0",
"delay": "^5.0.0",
"esbuild": "^0.14.2",
"execa": "^5.1.1",
"git-rev-sync": "^3.0.1",
"ipfs-http-client": "^57.0.3",
"ipfs-utils": "^9.0.4",
"miniflare": "^2.5.0",
"npm-run-all": "^4.1.5",
"p-wait-for": "^4.1.0",
"sade": "^1.7.4",
"smoke": "^3.1.1",
"toml": "^3.0.0"
},
"peerDependencies": {
"undici": "^5.8.0"
},
"author": "Vasco Santos <santos.vasco10@gmail.com>",
"license": "Apache-2.0 OR MIT"
}