This repository has been archived by the owner on Jul 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "whitewhale-protocol",
"version": "0.0.1",
"author": "0xFable, Arthur Itey and White Whale team <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint:code": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:formatting": "prettier --check \"**/*.(ts|tsx|js|json)\"",
"format:": "prettier --write \"**/*.(ts|tsx|js|json)\"",
"precommit": "lint-staged",
"prepush": "npm run build",
"_postinstall": "husky install"
},
"dependencies": {
"@anchor-protocol/anchor.js": "^5.1.1",
"@arthuryeti/terra": "^1.1.3",
"@arthuryeti/terraswap": "^1.3.1",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@hookform/resolvers": "^2.8.5",
"@terra-money/terra.js": "^3.1.2",
"@terra-money/wallet-provider": "^3.9.4",
"bignumber.js": "^9.0.2",
"chart.js": "^3.6.2",
"dayjs": "^1.10.7",
"framer-motion": "^5.4.5",
"graphql-request": "^3.7.0",
"next": "^12.0.7",
"numeral": "^2.0.6",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-chartjs-2": "^4.0.0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.22.0",
"react-icons": "^4.3.1",
"react-query": "^3.34.2",
"recharts": "^2.1.8",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/next": "^9.0.0",
"@types/node": "^16.11.11",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.1.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql": "^16.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0",
"typescript": "^4.5.4"
}
}