forked from pooltogether/pooltogether-pool-builder-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.19 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
{
"name": "prize-pool-builder-ui",
"version": "3.3.0",
"private": false,
"scripts": {
"reinstall": "rm -rf node_modules/ && yarn",
"dev": "npm-run-all --parallel start:app start:server",
"build": "next build && next export",
"start:app": "PORT=3000 node --max-old-space-size=8192 server.js",
"start:server": "netlify-lambda serve functions --config webpack.functions.config.js",
"postinstall": "netlify-lambda install --config webpack.functions.config.js",
"format": "yarn prettier --write .",
"check-format": "yarn prettier --check .",
"release": "./scripts/sentry-release.sh",
"dist": "yarn build && netlify-lambda build functions --config webpack.functions.config.js",
"distrelease": "export NEXT_JS_RELEASE_VERSION=$SENTRY_PROJECT:$(sentry-cli releases propose-version) && yarn build && yarn release",
"cypress": "bash ./scripts/run-cypress.sh",
"export": "next export",
"test": "jest",
"testcov": "jest --coverage --coverageDirectory=coverage && open ./coverage/index.html",
"watch": "yarn run test --watch",
"link-hooks": "cd node_modules/react && yarn link && cd ../react-query && yarn link && cd ../react-dom && yarn link && cd ../jotai && yarn link && cd ../.. && yarn link @pooltogether/hooks",
"unlink-hooks": "cd node_modules/react && yarn unlink && cd ../react-query && yarn unlink && cd ../react-dom && yarn unlink && cd ../jotai && yarn unlink && cd ../.. && yarn unlink @pooltogether/hooks"
},
"dependencies": {
"@pooltogether/bnc-onboard": "1.34.1-d",
"@pooltogether/current-pool-data": "3.6.2",
"@pooltogether/etherplex": "^1.1.2",
"@pooltogether/evm-chains-extended": "^0.5.3",
"@pooltogether/hooks": "^0.2.7",
"@pooltogether/pooltogether-contracts": "^3.4.5",
"@pooltogether/pooltogether-rng-contracts": "^1.3.0",
"@pooltogether/utilities": "^0.0.43",
"@pooltogether/yield-source-interface": "^1.0.1",
"@reach/menu-button": "^0.11.2",
"@sentry/cli": "^1.68.0",
"@sentry/react": "^6.10.0",
"@sentry/tracing": "^6.10.0",
"autoprefixer": "^9.7.6",
"axios": "^0.21.1",
"beautiful-react-hooks": "0.35",
"classnames": "^2.2.6",
"eth-revert-reason": "^1.0.3",
"ethers": "^5.0.32",
"feather-icons-react": "^0.4.1",
"framer-motion": "4.1",
"graphql": "^15.5.2",
"graphql-request": "3.5",
"graphql-tag": "2.12",
"jotai": "^0.16.10",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"netlify-lambda": "^2.0.6",
"next": "10.1.1",
"next-images": "^1.4.0",
"postcss-easy-import": "^3.0.0",
"react": "17.0.2",
"react-copy-to-clipboard": "^5.0.2",
"react-device-detect": "^1.12.1",
"react-dom": "17.0.2",
"react-query": "^3.16.0",
"react-select": "^4.3.0",
"react-toastify": "^5.5.0",
"react-tooltip": "^4.2.19",
"tailwindcss": "^1.7.6",
"truffle-privatekey-provider": "^1.5.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.1.1",
"cypress": "^6.8.0",
"hardhat": "^2.0.6",
"http-proxy-middleware": "^1.3.1",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"wait-on": "^5.2.1",
"web3": "^1.3.1",
"webpack-node-externals": "^3.0.0"
}
}