-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
101 lines (101 loc) · 2.98 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
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
{
"name": "edge-exchange-plugins",
"version": "2.14.0",
"description": "Exchange-rate sources for the Edge core",
"homepage": "https://edge.app/",
"repository": {
"type": "git",
"url": "[email protected]:EdgeApp/edge-exchange-plugins.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Edge",
"contributors": [
"William Swanson <[email protected]>",
"Paul Puey <[email protected]>"
],
"main": "./lib/index.js",
"react-native": "./lib/react-native.js",
"types": "./edge-exchange-plugins.d.ts",
"files": [
"/android/build.gradle",
"/android/src/",
"/CHANGELOG.md",
"/edge-exchange-plugins.podspec",
"/edge-exchange-plugins.d.ts",
"/ios/",
"/lib/",
"/LICENSE",
"/package.json",
"/README.md"
],
"scripts": {
"clean": "rimraf dist lib android/src/main/assets/edge-exchange-plugins",
"fix": "eslint . --fix",
"lint": "eslint .",
"node": "sucrase -d ./lib -q -t imports,typescript ./src",
"precommit": "lint-staged && npm-run-all types test",
"prepare": "husky install && npm-run-all clean node types webpack",
"start": "webpack serve",
"test": "nyc mocha 'test/**/*.test.ts'",
"types": "tsc",
"webpack": "webpack && cp -r android/src/main/assets/edge-exchange-plugins dist",
"verify": "npm-run-all prepare lint types test"
},
"lint-staged": {
"*.{js,ts,json}": "eslint"
},
"dependencies": {
"@cosmjs/encoding": "^0.32.2",
"biggystring": "^4.1.3",
"cleaners": "^0.3.13",
"ethers": "^5.7.0",
"regenerator-runtime": "0.13.11",
"xrpl": "^2.10.0"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^16.11.18",
"@types/node-fetch": "2.x",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"assert": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"chai": "^4.2.0",
"cleaner-config": "^0.1.10",
"crypto-browserify": "^3.12.0",
"edge-core-js": "^2.17.0",
"edge-currency-accountbased": "^2.9.0",
"edge-currency-plugins": "^2.4.1",
"esbuild-loader": "^2.20.0",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json-files": "^1.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"https-browserify": "^1.0.0",
"husky": "^7.0.0",
"lint-staged": "^10.5.3",
"mocha": "^8.1.3",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"prettier": "^2.2.0",
"process": "^0.11.10",
"rimraf": "^2.6.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"sucrase": "^3.9.5",
"typescript": "~4.4.4",
"url": "^0.11.3",
"webpack": "^5.28.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.15.1"
}
}