-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
82 lines (82 loc) · 2.23 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
{
"name": "hodlwatch",
"homepage": "https://hodl.watch",
"version": "0.4.2",
"repository": {
"type": "git",
"url": "git://github.com/belaczek/hodlwatch.git"
},
"license": "MIT",
"private": false,
"scripts": {
"start": "serve dist",
"dev": "next src",
"cors-server": "node ./cors-server",
"build": "next build src && yarn export",
"export": "next export src -o './dist'",
"deploy": "gh-pages -d dist",
"test": "cross-env test=1 jest",
"test:watch": "yarn test -- --watch",
"test:coverage": "yarn test -- --coverage",
"format": "prettier --write 'src/**/*.js'",
"format:single": "prettier --write",
"predeploy": "yarn export",
"analyze": "cross-env ANALYZE=true next build src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"axios": "0.21.2",
"big.js": "5.2.2",
"bignumber.js": "^8.1.1",
"bloomer": "0.6.5",
"bulma": "0.9.2",
"bulma-switch": "2.0.0",
"ccxt": "1.49.66",
"color-hash": "1.0.3",
"cors-anywhere": "^0.4.4",
"crypto-js": "4.0.0",
"date-fns": "1.30.1",
"ethereumjs-abi": "0.6.8",
"ethereumjs-util": "6.2.0",
"lodash": "4.17.21",
"next": "10.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.2",
"react-toastify": "5.5.0",
"recharts": "1.8.5",
"recompose": "0.30.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"serve": "11.3.2"
},
"devDependencies": {
"@next/bundle-analyzer": "10.2.0",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"cross-env": "^7.0.2",
"eslint": "6.x",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "4.2",
"gh-pages": "^2.2.0",
"husky": "4.3",
"jest": "^25.2.3",
"lint-staged": "10.0.9",
"node-sass": "5.0.0",
"prettier": "^2.1.2"
}
}