forked from Railgun-Community/wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.71 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.71 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@railgun-community/wallet",
"version": "10.9.0",
"description": "RAILGUN Wallet SDK, compatible with mobile, browser and nodejs environments.",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist/**/*",
"*.js"
],
"exports": {
".": "./dist/index.js",
"./react-native-shims": "./react-native-shims.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run lint && npm run tsc",
"tsc-test": "tsc -p tsconfig.test.json && tsc-alias -p tsconfig.test.json",
"build-test": "npm run clean && npm run tsc-test",
"test-coverage": "npm run build-test && nyc mocha 'src/**/__tests__/*.test.ts'",
"test": "npm run build-test && mocha 'src/**/__tests__/*.test.ts'",
"test-V2": "npm run build-test && env V2_TEST=1 mocha 'src/**/__tests__/*.test.ts'",
"tsc": "tsc && tsc-alias",
"check-circular-deps": "madge --circular .",
"eslint": "eslint src/**/* --ext .ts,.tsx --ignore-pattern **/*.graphql --fix",
"lint": "npm run check-circular-deps && npm run eslint && npm run tsc && npm run tsc-test",
"prepare": "npm run build",
"postinstall": "node postinstall.js",
"build-graphql-V2": "rm -rf src/services/railgun/quick-sync/V2/graphql/.graphclient && graphclient build --dir src/services/railgun/quick-sync/V2/graphql",
"build-graphql-V3": "rm -rf src/services/railgun/quick-sync/V3/graphql/.graphclient && graphclient build --dir src/services/railgun/quick-sync/V3/graphql",
"build-graphql-railgun-txids": "rm -rf src/services/railgun/railgun-txids/graphql/.graphclient && graphclient build --dir src/services/railgun/railgun-txids/graphql"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Railgun-Community/wallet.git"
},
"homepage": "https://github.com/Railgun-Community/wallet#readme",
"bugs": {
"url": "https://github.com/Railgun-Community/wallet/issues"
},
"dependencies": {
"@graphql-mesh/cache-localforage": "^0.7.20",
"@graphql-mesh/cross-helpers": "^0.3.4",
"@graphql-mesh/graphql": "^0.34.16",
"@graphql-mesh/http": "^0.3.28",
"@graphql-mesh/merger-bare": "^0.96.0",
"@graphql-mesh/merger-stitching": "^0.18.24",
"@graphql-mesh/runtime": "^0.46.23",
"@graphql-mesh/store": "^0.9.20",
"@graphql-mesh/types": "^0.91.14",
"@graphql-mesh/utils": "^0.43.22",
"@noble/ed25519": "^1.7.1",
"@railgun-community/engine": "^9.6.0",
"@railgun-community/shared-models": "^8.0.1",
"@whatwg-node/fetch": "^0.8.4",
"assert": "2.0.0",
"axios": "1.7.2",
"brotli": "^1.3.3",
"buffer": "^6.0.3",
"crypto-browserify": "3.12.0",
"ethereum-cryptography": "^2.0.0",
"ethers": "6.14.3",
"events": "3.3.0",
"graphql": "^16.6.0",
"stream-browserify": "3.0.0"
},
"devDependencies": {
"@graphprotocol/client-cli": "^2.2.20",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/leveldown": "^4.0.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"leveldown": "^6.1.1",
"madge": "^6.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.1",
"snarkjs": "^0.7.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"typescript": "^4.9.4"
},
"react-native": {
"crypto": false,
"util": false
},
"resolutions": {
"ethers": "6.14.3"
},
"packageManager": "yarn@1.22.22"
}