-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.15 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
{
"name": "edge-eth-history",
"version": "0.1.0",
"private": true,
"description": "Ethereum Gas Price Tracking and Graphing",
"homepage": "https://github.com/EdgeApp/edge-eth-history#readme",
"bugs": {
"url": "https://github.com/EdgeApp/edge-eth-history/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/EdgeApp/edge-eth-history.git"
},
"license": "MIT",
"author": "Airbitz, Inc.",
"main": "lib/index.js",
"scripts": {
"build": "sucrase -q -t typescript,imports,jsx -d ./lib ./src",
"built": "npm run build && npm run test",
"configure": "node -r sucrase/register ./src/utils/config.ts",
"clean": "rimraf lib",
"client": "parcel serve src/client/index.html --open",
"demo": "parcel serve src/index.html --open",
"fix": "npm run lint -- --fix",
"go": "yarn build && yarn start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precommit": "npm run build && npm run test",
"prepare": "configure ./src/utils/config.ts && yarn build",
"pretest": "npm run build",
"start": "node -r sucrase/register src/index.ts",
"startEngines": "node lib/feesEngine.js",
"test": "mocha -r sucrase/register test/**/*.test.ts"
},
"dependencies": {
"@types/node": "^14.0.22",
"biggystring": "^3.0.2",
"body-parser": "~1.0.1",
"cleaner-config": "^0.1.4",
"cleaners": "^0.3.9",
"cors": "^2.8.3",
"date-fns": "^2.22.1",
"date-fns-tz": "^1.1.4",
"edge-core-js": "^0.18.0",
"edge-currency-bitcoin": "^4.7.7",
"edge-server-tools": "^0.1.0",
"es6-promisify-all": "^0.1.0",
"express": "~4.17.1",
"express-http-proxy": "^1.6.2",
"history": "^5.0.0",
"jsonschema": "^1.2.4",
"nano": "^6.2.0",
"node-fetch": "^1.7.2",
"promisify-node": "^0.5.0",
"random-js": "^1.0.8",
"react": "^16.12.0",
"react-datepicker": "^4.1.1",
"react-dom": "^16.12.0",
"react-loader-spinner": "^4.0.0",
"react-router-dom": "^5.2.0",
"react-timezone-select": "^1.0.4",
"recharts": "^2.0.9",
"rimraf": "^2.6.2",
"sprintf-js": "^1.1.1",
"uri-js": "^4.2.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@types/chai": "^4.2.9",
"@types/express": "^4.17.2",
"@types/mocha": "^8.2.2",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-eslint": "^8.2.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^5.2.0",
"latest": "^0.2.0",
"lint-staged": "^10.5.3",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"prettier": "^2.2.0",
"sucrase": "^3.12.1",
"typescript": "^4.1.2"
}
}