-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.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
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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@turbo-eth/delegable-demo-app",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint --fix",
"prettier": "prettier './src' --write",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src": [
"lint",
"prettier"
]
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@next/bundle-analyzer": "^13.1.1",
"@next/font": "13.1.1",
"@rainbow-me/rainbowkit": "^0.8.1",
"@turbo-eth/core-wagmi": "0.0.0-beta.3",
"@turbo-eth/erc20-wagmi": "0.0.0-beta.7",
"@turbo-eth/erc721-wagmi": "0.0.0-beta.4",
"@wagmi/chains": "^0.1.7",
"axios": "^1.2.2",
"classnames": "^2.3.2",
"ethers": "^5.7.2",
"iron-session": "^6.3.1",
"luxon": "^3.2.1",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-modal": "^3.16.1",
"react-modal-hook": "^3.0.2",
"react-responsive": "^9.0.2",
"react-spring": "^9.6.1",
"react-use-keypress": "^1.3.1",
"siwe": "2.0.5",
"swr": "^2.0.0",
"tailwindcss": "^3.2.4",
"usehooks-ts": "^2.9.1",
"wagmi": "^0.9.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@svgr/webpack": "^6.5.1",
"@tsconfig/next": "^1.0.4",
"@types/luxon": "^3.2.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"autoprefixer": "^10.4.13",
"eslint": "8.30.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.4.6",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-testing-library": "^5.5.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"jsonwebtoken": "^9.0.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.0",
"typescript": "4.9.4"
}
}