-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.1 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": "lossless-ui",
"version": "1.0.0",
"private": false,
"author": "Harmony zkDAO",
"scripts": {
"reinstall": "rm -rf .next out ./node_modules && yarn cache clean && yarn",
"dev": "next dev",
"build": "next build && next export && yarn postexport",
"postexport": "node post-export.js",
"dist": "yarn build",
"export": "next export",
"distrelease": "export NEXT_PUBLIC_RELEASE_VERSION=$(sentry-cli releases propose-version) && yarn dist",
"sentryrelease": "./src/scripts/sentry-release.sh",
"start": "next start",
"test": "jest",
"testcov": "jest --coverage --coverageDirectory=coverage && open ./coverage/index.html",
"watch": "yarn run test --watch"
},
"devDependencies": {
"@sentry/cli": "^1.72.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.1",
"@types/node": "^16.7.2",
"@types/react": "^17.0.19",
"jest": "^27.5.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@fontsource/poppins": "^4.5.9",
"@losslessproject/client-js": "^0.1.0",
"@losslessproject/evm-chains-extended": "^0.1.0",
"@losslessproject/hooks": "^0.1.6",
"@losslessproject/pool-data": "^0.1.3",
"@losslessproject/react-components": "^0.1.2",
"@losslessproject/twab-delegator-js": "^0.1.0",
"@losslessproject/utilities": "^0.1.3",
"@losslessproject/wallet-connection": "^0.1.0",
"@pooltogether/current-pool-data": "^3.7.2",
"@pooltogether/etherplex": "^1.1.4",
"@pooltogether/pooltogether-contracts": "^3.4.4",
"@pooltogether/v4-utils-js": "^0.1.3",
"@reach/dialog": "^0.15.3",
"@reach/menu-button": "^0.15.3",
"@reach/tooltip": "^0.15.3",
"@reach/visually-hidden": "^0.15.2",
"@sentry/react": "^6.17.5",
"@sentry/tracing": "^6.17.5",
"@svgr/webpack": "^6.2.1",
"@uniswap/widgets": "^0.0.25-beta",
"autoprefixer": "^10.3.1",
"beautiful-react-hooks": "^1.0.2",
"classnames": "^2.3.1",
"eth-revert-reason": "^1.0.3",
"ethers": "^5.6.4",
"fathom-client": "^3.1.0",
"feather-icons-react": "^0.5.0",
"framer-motion": "^4.1.17",
"graphql": "^15.5.1",
"graphql-request": "^3.5.0",
"graphql-tag": "^2.12.5",
"i18next": "^20.3.5",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-locize-backend": "^4.2.3",
"i18next-node-locize-backend": "^3.1.2",
"jotai": "^1.4.3",
"js-cookie": "^3.0.0",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"next": "12",
"ordinal": "^1.0.3",
"postcss": "^8.4.6",
"postcss-custom-properties-fallback": "^1.0.1",
"postcss-easy-import": "^3.0.0",
"react": "17.0.2",
"react-device-detect": "^1.17.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.20.5",
"react-i18next": "11.11.4",
"react-query": "^3.39.1",
"react-query-devtools": "^2.6.3",
"react-redux": "^7.2.6",
"react-rewards": "^1.1.2",
"react-spring-bottom-sheet": "^3.4.0",
"react-toastify": "^8.2.0",
"react-tooltip": "^4.2.21",
"redux": "^4.1.2",
"tailwindcss": "^2.2.19",
"wagmi": "^0.3.5"
}
}