forked from liteflow-labs/nextjs-tailwind-ethers
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "openware-dapp-boilerplate",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=7.0.0"
},
"scripts": {
"clean": "rimraf .next",
"dev": "next dev",
"prebuild": "npm run clean",
"build": "next build",
"start": "next start",
"lint": "next lint && npm run prettier -- --check",
"format": "npm run prettier -- -w",
"prettier": "prettier \"{components,pages}/**/*.{ts,tsx}\""
},
"dependencies": {
"@headlessui/react": "^1.2.0",
"@heroicons/react": "^1.0.1",
"@metamask/onboarding": "^1.0.1",
"@openware/react-opendax": "^0.1.40",
"@tailwindcss/forms": "^0.3.3",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.4",
"classnames": "^2.3.1",
"ethers": "^5.4.1",
"next": "11.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^0.5.6"
},
"devDependencies": {
"@types/react": "17.0.15",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"autoprefixer": "^10.2.6",
"eslint": "^7.28.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-unused-imports": "^1.1.1",
"postcss": "^8.3.5",
"prettier": "^2.3.1",
"prettier-plugin-organize-imports": "^2.1.0",
"sass": "^1.35.1",
"tailwindcss": "^2.1.4",
"typescript": "4.3.5"
},
"resolutions": {
"**/@walletconnect/socket-transport/ws": "7.4.6"
}
}