forked from Synthetixio/kwenta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.52 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
93
94
95
96
97
{
"name": "kwenta",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"tsc": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "eslint . --ext ts,.tsx && tsc",
"lint:sarif": "node tests/lint.js . --ext ts,.tsx && tsc",
"lint:fix": "eslint . --ext ts,.tsx --fix"
},
"dependencies": {
"@artsy/fresnel": "1.2.2",
"@reach/accordion": "0.11.2",
"@reach/dialog": "0.11.0",
"@reach/disclosure": "0.11.2",
"@reach/tabs": "0.11.2",
"@synthetixio/assets": "2.0.3",
"@synthetixio/js": "0.1.4",
"@tippyjs/react": "4.1.0",
"axios": "0.20.0",
"bignumber.js": "9.0.0",
"bnc-notify": "1.5.0",
"bnc-onboard": "1.14.0",
"date-fns": "2.15.0",
"ethers": "5.0.8",
"i18next": "19.7.0",
"immer": "7.0.8",
"lodash": "4.17.20",
"memoize-one": "5.1.1",
"next": "9.5.5",
"next-compose-plugins": "2.2.0",
"next-images": "1.4.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-i18next": "11.7.0",
"react-query": "2.23.0",
"react-query-devtools": "2.5.1",
"react-select": "3.1.0",
"react-slick": "0.27.11",
"react-spring": "8.0.27",
"react-table": "7.5.0",
"recharts": "2.0.0-beta.6",
"recoil": "0.0.12",
"slick-carousel": "1.8.1",
"styled-components": "5.1.1",
"styled-media-query": "2.1.2",
"synthetix-data": "2.1.29",
"unstated-next": "1.1.0",
"use-immer": "0.4.1"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "2.1.5",
"@types/date-fns": "2.6.0",
"@types/lodash": "4.14.159",
"@types/node": "14.0.13",
"@types/react": "16.9.46",
"@types/react-select": "3.0.19",
"@types/react-slick": "0.23.4",
"@types/react-table": "7.0.22",
"@types/styled-components": "5.1.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "1.11.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "2.5.1",
"file-loader": "6.0.0",
"husky": "4.2.3",
"lint-staged": "10.0.10",
"prettier": "2.0.5",
"svg-react-loader": "0.4.6",
"typescript": "3.9.7",
"url-loader": "4.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint",
"npm run format"
]
}
}