-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "ipfs-w3auth-gateway",
"version": "0.5.0",
"main": "src/index.ts",
"repository": "https://github.com/crustio/ipfs-web3-authenticator.git",
"author": "Zikun Fan <[email protected]>",
"contributors": [
"Gavin Fu <[email protected]>"
],
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development nodemon ./src/index.ts",
"build": "tsc",
"start": "node ./dist/index.js",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint"
},
"dependencies": {
"@crustio/ipfs-w3auth-handler": "^0.0.19",
"@polkadot/api": "^5.9.1",
"avalanche": "3.8.1",
"bs58": "^4.0.1",
"cors": "^2.8.5",
"create-hash": "1.2.0",
"dotenv": "^10.0.0",
"ethers": "^5.4.6",
"express": "^4.17.1",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-proxy": "^1.17.7",
"@types/lodash": "^4.14.172",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.0.3"
},
"resolutions": {
"@crustio/ipfs-w3auth-substrate": "0.0.4",
"usb": "1.8.8"
},
"engines": {
"node": ">=11.0.0"
}
}