forked from EdgeApp/edge-reports-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.48 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
{
"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",
"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",
"test": "mocha -r sucrase/register 'test/**/*.test.ts'",
"demo": "parcel serve src/demo/index.html --open",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"chai": "^4.2.0",
"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",
"husky": ">=3.0.0",
"lint-staged": ">=9.0.0",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"prettier": ">=1.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sucrase": "^3.12.1",
"typescript": "^3.8.2"
},
"dependencies": {
"@types/node": "^14.0.22",
"api-changelly": "git://github.com/changelly/api-changelly.git#8e350f3",
"axios": "^0.19.2",
"biggystring": "^3.0.2",
"body-parser": "^1.19.0",
"cleaners": "^0.2.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"nano": "^8.2.2",
"node-fetch": "^2.6.0",
"web3": "^1.2.11"
}
}