forked from pooltogether/pooltogether-community-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.59 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
{
"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",
"distrelease": "yarn build"
},
"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
},
"dependencies": {
"@pooltogether/bnc-onboard": "1.13.1-a",
"@pooltogether/current-pool-data": "^3.0.1",
"@pooltogether/etherplex": "^0.2.3",
"@pooltogether/pooltogether-contracts": "^3.0.1",
"@reach/tooltip": "0.10.5",
"autoprefixer": "^9.8.1",
"babel-jest": "^26.3.0",
"bn.js": "4.11.0",
"classnames": "^2.2.6",
"ethers": "^4.0.47",
"feather-icons-react": "^0.4.1",
"jest": "^26.4.2",
"js-cookie": "^2.2.1",
"next": "9.4.4",
"next-images": "^1.4.0",
"postcss-easy-import": "^3.0.0",
"react": "16.13.1",
"react-device-detect": "^1.13.1",
"react-dom": "16.13.1",
"react-toastify": "^6.0.5",
"request": "2.88.2",
"rollup": "2.17.1",
"tailwindcss": "^1.7.6",
"webpack": "4"
},
"devDependencies": {
"@next/bundle-analyzer": "^9.4.4"
}
}