forked from kadenzipfel/putin-poopy-pants
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 KB
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": "ukraine-relief",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"prettier": "prettier --write \"./src/**/*.{ts,tsx,js,jsx}\"",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.8.6",
"@davatar/react": "^1.9.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@ethersproject/units": "^5.5.0",
"@heroicons/react": "^1.0.5",
"@pooltogether/v4-client-js": "^0.11.0",
"@pooltogether/v4-pool-data": "^1.6.0",
"@pooltogether/v4-testnet": "https://github.com/pooltogether/v4-testnet.git",
"@uniswap/token-lists": "^1.0.0-beta.27",
"@usedapp/coingecko": "^0.4.3",
"@usedapp/core": "^0.11.0",
"axios": "^0.26.0",
"canvas-confetti": "^1.5.1",
"ethers": "^5.5.4",
"framer-motion": "^6",
"next": "12.1.0",
"next-crypto-icons": "^0.1.0",
"react": "17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "17.0.2",
"react-social-icons": "^5.11.0",
"wagmi": "^0.2.0",
"web3": "^1.7.0"
},
"devDependencies": {
"@types/canvas-confetti": "^1.4.2",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/react-copy-to-clipboard": "^5.0.2",
"autoprefixer": "^10.4.2",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.23",
"typescript": "4.6.2"
},
"lint-staged": {
"*.{js,css,md,ts,tsx,jsx}": "prettier --write"
}
}