This repository has been archived by the owner on Sep 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
122 lines (122 loc) · 3.54 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "kwenta",
"version": "2.45.2",
"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",
"test:e2e": "start-server-and-test 'npm run build && npm run start' http-get://localhost:3000 'synpress run'",
"test:e2e:ci": "synpress run --group smoke-tests --record --parallel",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@artsy/fresnel": "1.7.0",
"@balancer-labs/sor": "1.0.0",
"@metamask/detect-provider": "1.2.0",
"@reach/accordion": "0.15.1",
"@reach/dialog": "0.15.0",
"@reach/tabs": "0.15.0",
"@synthetixio/assets": "2.0.10",
"@synthetixio/contracts-interface": "2.47.0-ovm.5",
"@synthetixio/data": "2.47.0-ovm.5",
"@synthetixio/optimism-networks": "2.46.3",
"@synthetixio/providers": "2.47.0-ovm.5",
"@synthetixio/queries": "2.47.0-ovm.7",
"@synthetixio/transaction-notifier": "2.47.0-ovm.5",
"@synthetixio/wei": "2.47.0-ovm.5",
"@tippyjs/react": "4.1.0",
"axios": "0.21.1",
"bignumber.js": "9.0.0",
"bnc-onboard": "1.26.0",
"date-fns": "2.21.3",
"date-fns-tz": "1.1.4",
"ethcall": "3.2.0",
"ethers": "5.4.1",
"framer-motion": "4.1.17",
"graphql-request": "3.4.0",
"i18next": "19.7.0",
"immer": "8.0.1",
"lodash": "4.17.20",
"moment-business-time": "1.1.1",
"next": "10.0.0",
"next-compose-plugins": "2.2.0",
"react": "17.0.1",
"react-countdown": "2.3.1",
"react-dom": "17.0.1",
"react-i18next": "11.7.0",
"react-optimized-image": "^0.4.1",
"react-query": "3.16.0",
"react-responsive": "8.2.0",
"react-select": "4.3.1",
"react-slick": "0.28.1",
"react-table": "7.7.0",
"react-toastify": "7.0.3",
"recharts": "2.0.9",
"recoil": "0.3.1",
"slick-carousel": "1.8.1",
"styled-components": "5.1.1",
"styled-media-query": "2.1.2",
"synthetix": "^2.40.1-alpha",
"synthetix-data": "2.1.42",
"unstated-next": "1.1.0",
"use-immer": "0.4.2"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "2.1.5",
"@svgr/core": "5.5.0",
"@synthetixio/synpress": "0.8.1",
"@types/date-fns": "2.6.0",
"@types/lodash": "4.14.159",
"@types/node": "14.0.13",
"@types/react": "16.9.46",
"@types/react-responsive": "8.0.2",
"@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": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"babel-eslint": "10.1.0",
"babel-plugin-styled-components": "1.11.1",
"eslint": "7.12.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "5.0.9",
"imagemin-mozjpeg": "9.0.0",
"imagemin-optipng": "8.0.0",
"imagemin-svgo": "8.0.0",
"lint-staged": "10.0.10",
"optimized-images-loader": "github:clementbalestrat/optimized-images-loader",
"pinst": "2.1.4",
"prettier": "2.0.5",
"typescript": "4.0.5",
"url-loader": "4.1.0",
"webp-loader": "0.6.0"
},
"resolutions": {
"webpack": "^5.0.0-beta.30"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"engines": {
"node": ">=14",
"npm": ">=7"
}
}