forked from EdgeApp/edge-reports-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.11 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
{
"name": "edge-reports-server",
"version": "0.1.0",
"private": true,
"description": "Reporting tools and GUI for partner revenue share",
"repository": "https://github.com/EdgeApp/edge-reports-server",
"license": "MIT",
"author": "Airbitz, Inc.",
"main": "lib/indexEngine.js",
"scripts": {
"build.lib": "sucrase -q -t typescript,imports,jsx -d ./lib ./src",
"build.types": "tsc",
"clean": "rimraf lib",
"fix": "npm run lint -- --fix",
"fio:promo": "node -r sucrase/register src/bin/fioPromo/fioPromo.ts",
"precommit": "lint-staged && npm run prepare",
"prepare": "npm-run-all clean -p build.*",
"start": "node -r sucrase/register src/indexEngine.ts",
"start:rates": "node -r sucrase/register src/indexRatesEngine.ts",
"start:api": "node -r sucrase/register src/indexApi.ts",
"start:destroyPartition": "node -r sucrase/register src/bin/destroyPartition.ts",
"start:migrate": "node -r sucrase/register src/bin/migration.ts",
"stats": "node -r sucrase/register src/bin/partitionStats.ts",
"test": "mocha -r sucrase/register 'test/**/*.test.ts'",
"demo": "parcel serve src/demo/index.html",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"dependencies": {
"@types/node": "^14.0.22",
"api-changelly": "git://github.com/changelly/api-changelly.git#8e350f3",
"axios": "^0.21.2",
"biggystring": "^3.0.2",
"body-parser": "^1.19.0",
"cleaners": ">=0.2.1",
"commander": "^6.1.0",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.1.4",
"express": "^4.17.1",
"nano": "^8.2.2",
"node-fetch": "^2.6.7",
"prop-types": ">= 15.5.10 < 16.0.0",
"react": "^16.14.0",
"react-cookie": "^4.0.3",
"react-datepicker": "^3.3.0",
"react-dom": "^16.14.0",
"react-loader-spinner": "^3.1.14",
"react-router-dom": "^5.2.0",
"recharts": "^1.8.5",
"web3": "^1.2.11"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"chai": "^4.3.4",
"eslint": ">=6.2.2",
"eslint-config-standard-kit": ">=0.14.4",
"eslint-plugin-import": ">=2.18.0",
"eslint-plugin-node": ">=9.1.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-react": ">=7.14.2",
"eslint-plugin-simple-import-sort": ">=4.0.0",
"eslint-plugin-standard": ">=4.0.0",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"husky": ">=3.0.0",
"lint-staged": ">=9.0.0",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.3.2",
"path-browserify": "^1.0.1",
"prettier": "^1.0.0",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"sucrase": "^3.20.0",
"typescript": "^3.8.2",
"url": "^0.11.0",
"util": "^0.12.4"
}
}