This repository has been archived by the owner on Oct 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "@reef-chain/util-lib",
"version": "0.10.1",
"description": "",
"private": false,
"source": "src/index.ts",
"module": "lib/index.mjs.js",
"typings": "lib/index.d.ts",
"main": "lib/index.js",
"exports": {
".": {
"import": "./lib/index.mjs.js",
"default": "./lib/index.js"
}
},
"scripts": {
"ts-types": "tsc --emitDeclarationOnly --declarationMap --outDir ./lib",
"circular-dep": "dpdm --no-warning --no-tree ./src/index.ts ",
"circular-dep-test": "dpdm --no-warning --no-tree ./test/test-app-state.ts ",
"build": "rimraf lib && node ./esbuild.cjs && yarn run circular-dep && yarn run ts-types",
"start": "rimraf lib && node ./esbuild.cjs watch=true && yarn run circular-dep && yarn run ts-types",
"test": "esbuild ./.test/test-app-state.ts --bundle --servedir=./.test/server --outdir=./.test/server/js --platform=browser --tsconfig=tsconfig.json --sourcemap"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"dpdm": "^3.10.0",
"esbuild": "0.16.17",
"react": "17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"@polkadot/extension-inject": "^0.44.6",
"@reef-defi/evm-provider": "^1.0.9",
"@reef-defi/extension-base": "^1.0.10",
"@reef-defi/extension-dapp": "^1.0.16",
"@reef-defi/extension-inject": "^1.0.16",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
"crypto-browserify": "^3.12.0",
"graphql": "^16.6.0",
"graphql-ws": "^5.12.1"
},
"peerDependencies": {
"rxjs": "^7.5.6"
},
"resolutions": {
"@polkadot/util-crypto": "~7.9.2",
"@polkadot/api": "6.4.2",
"@polkadot/keyring": "~7.9.2"
},
"browser": {
"crypto": false
}
}