-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.47 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
{
"name": "dh-channel-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev | pino-pretty",
"build": "next build",
"start": "next start",
"lint": "yarn format && eslint . --fix",
"test": "echo 'No tests here so far'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,json,md,mdx,html}'",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"test-all": "yarn check-format && yarn check-lint && yarn check-types && yarn build && yarn pretty-quick --staged",
"prepare": "husky install"
},
"dependencies": {
"@react-hook/copy": "^2.0.1",
"animate.css": "^4.1.1",
"axios": "^0.24.0",
"bitcoin-conversion": "^0.1.6",
"comet-ui-kit": "^0.1.7",
"framer-motion": "^4.1.17",
"jest": "^26.6.3",
"next": "^12.0.1",
"next-seo": "^4.28.1",
"pino": "^6.11.1",
"polished": "^4.0.4",
"react": "^17.0.2",
"react-countup": "^6.0.0",
"react-css-collapse": "^4.1.0",
"react-dom": "^17.0.2",
"react-intl": "^5.21.0",
"react-paginate": "^8.0.3",
"react-qrcode-logo": "^2.5.0",
"react-redux": "^7.2.2",
"react-scroll": "^1.8.4",
"react-spinners": "^0.11.0",
"react-spring": "^8.0.27",
"react-sticky": "^6.0.3",
"react-toastify": "^8.0.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"sharp": "^0.29.1",
"styled-components": "^5.2.1",
"styled-normalize": "^8.0.7",
"use-debounce": "^7.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.5",
"@types/pino": "^6.3.6",
"@types/react": "^16.9.53",
"@types/react-redux": "^7.1.9",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"pino-pretty": "^4.6.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.1",
"type-fest": "^0.20.2",
"typescript": "^4.3.2",
"wait-on": "^5.2.0"
}
}