-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
{
"name": "pooltogether-pool-ui",
"version": "3.0.1",
"private": false,
"scripts": {
"reinstall": "rm -rf node_modules/ && yarn",
"clean": "rm -rf .next",
"dev": "next dev",
"test": "jest",
"build": "next build && next export && yarn postexport",
"start": "next start",
"postexport": "node post-export.js",
"release": "./scripts/sentry-release.sh",
"distrelease": "export NEXT_JS_RELEASE_VERSION=$SENTRY_PROJECT:$(sentry-cli releases propose-version) && yarn build && yarn release",
"format": "yarn prettier --write .",
"check-format": "yarn prettier --check ."
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.{ts,js}"
],
"coverageReporters": [
"text",
"html"
],
"moduleNameMapper": {
"^lib/(.*)$": "<rootDir>/lib/$1",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"verbose": true
},
"devDependencies": {
"@next/bundle-analyzer": "^10.1.1"
},
"dependencies": {
"@pooltogether/bnc-onboard": "1.20.2",
"@pooltogether/current-pool-data": "3.3.3",
"@pooltogether/etherplex": "1.0.2",
"@pooltogether/pooltogether-contracts": "3.3.7",
"@pooltogether/pooltogether-rng-contracts": "^1.1.2",
"@reach/menu-button": "^0.11.2",
"@sentry/cli": "^1.61.0",
"@sentry/react": "^5.29.2",
"@sentry/tracing": "^5.29.2",
"autoprefixer": "^9.8.1",
"axios": "^0.21.1",
"babel-jest": "^26.3.0",
"beautiful-react-hooks": "^0.31.0",
"bn.js": "4.11.0",
"classnames": "^2.2.6",
"compare-versions": "^3.6.0",
"d3-scale": "^3.2.3",
"d3-shape": "^2.0.0",
"date-fns": "^2.16.1",
"ethers": "^5.0.31",
"feather-icons-react": "^0.4.1",
"jest": "^26.4.2",
"jotai": "^0.11.2",
"js-cookie": "^2.2.1",
"next": "10.1.1",
"next-images": "^1.7.0",
"postcss-easy-import": "^3.0.0",
"react": "17.0.2",
"react-copy-to-clipboard": "^5.0.2",
"react-countup": "^4.3.3",
"react-device-detect": "^1.13.1",
"react-dom": "17.0.2",
"react-loader-spinner": "^3.1.14",
"react-query": "^2.26.4",
"react-toastify": "^6.0.5",
"react-tooltip": "^4.2.15",
"request": "2.88.2",
"rollup": "2.17.1",
"scheduler": "^0.20.1",
"tailwindcss": "^1.7.6",
"webpack": "5.28.0"
}
}