-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
92 lines (92 loc) · 2.51 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
{
"name": "yieldscan",
"version": "0.1.0",
"private": true,
"dependencies": {
"@amplitude/react-amplitude": "^1.0.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.7",
"@chakra-ui/core": "^0.4.1",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@polkadot/api": "^1.13.1",
"@polkadot/extension-dapp": "^0.24.1",
"@polkadot/react-identicon": "^0.48.1",
"@polkadot/ui-keyring": "^0.53.1",
"@polkadot/util": "^2.10.1",
"@polkadot/util-crypto": "^2.10.1",
"@sentry/browser": "^5.11.0",
"amplitude-js": "^5.7.0",
"antd": "^3.26.0",
"axios": "^0.19.1",
"emotion-theming": "^10.0.19",
"express": "^4.17.1",
"formik": "^2.1.4",
"ignore-styles": "^5.0.1",
"konva": "^4.0.18",
"node-sass": "^4.14.0",
"react": "^16.12.0",
"react-countup": "^4.3.3",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.8.0",
"react-konva": "^16.10.1-0",
"react-media": "^1.10.0",
"react-range": "^1.6.3",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"react-step-wizard": "^5.3.2",
"react-vertical-timeline-component": "^2.5.0",
"socket.io-client": "^2.3.0",
"use-debounce": "^3.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "yarn build && cd build && surge --domain https://dev-yieldscan.surge.sh/",
"deploy-public": "yarn build && cd build && surge --domain https://yieldscan.surge.sh/",
"lint": "lint-staged",
"pre-commit": "./hooks/pre-commit"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.0.0",
"eslint-plugin-import": "2.x",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"shared-git-hooks": "^1.2.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn pre-commit"
}
}
}