-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 3.56 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "web-stuff",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=14.18"
},
"scripts": {
"dev": "node esbuild/development.js",
"build": "node esbuild/production.js",
"lint": "eslint --report-unused-disable-directives --ext=.ts,.tsx src/",
"postlint": "stylelint --report-invalid-scope-disables --report-needless-disables src/**/*.css",
"typescript:check": "npx tsc --noEmit"
},
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@ethersproject/abi": "5.6.3",
"@ethersproject/providers": "5.6.8",
"@ethersproject/solidity": "5.6.1",
"@metamask/detect-provider": "^1.2.0",
"@rainbow-me/rainbowkit": "^0.3.4",
"@reduxjs/toolkit": "^1.8.2",
"@semaphore-protocol/group": "^2.0.0",
"@semaphore-protocol/identity": "^2.0.0",
"@semaphore-protocol/proof": "^2.0.1",
"@stripe/stripe-js": "^1.32.0",
"@vercel/node": "^2.2.0",
"@walletconnect/client": "1.7.8",
"@walletconnect/types": "1.7.8",
"@walletconnect/utils": "1.7.8",
"@walletconnect/web3-provider": "1.7.8",
"@worldcoin/id": "^0.3.0",
"@zk-kit/identity": "^1.4.1",
"@zk-kit/protocols": "^1.11.1",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"clsx": "^1.1.1",
"eth-crypto": "^2.3.0",
"ethers": "^5.6.9",
"framer-motion": "^6.3.15",
"immutable": "^4.1.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-popper-tooltip": "^4.3.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-toastify": "^9.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-persist-transform-immutable": "^5.0.0",
"stripe": "^9.10.0",
"wagmi": "^0.4.12",
"web3.storage": "^4.3.0"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@prettier/plugin-xml": "^2.2.0",
"@types/react": "^18.0.10",
"@types/react-dom": "18.0.5",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"autoprefixer": "10.4.7",
"browserslist": "4.20.3",
"cspell": "6.1.0",
"cssnano": "5.1.10",
"esbuild": "0.14.42",
"esbuild-plugin-browserslist": "^0.4.9",
"esbuild-plugin-clean": "^0.9.0",
"esbuild-plugin-copy": "^1.3.0",
"eslint": "8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"lint-staged": "12.5.0",
"opener": "^1.5.2",
"postcss": "8.4.14",
"prettier": "^2.6.2",
"prettier-plugin-organize-attributes": "^0.0.5",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-tailwindcss": "0.1.11",
"stylelint": "14.8.5",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-no-unsupported-browser-features": "^5.0.3",
"svgo": "^2.8.0",
"tailwindcss": "^3.0.24",
"typescript": "4.7.2"
},
"lint-staged": {
"*.css": "stylelint --cache --fix",
"*.{ts,tsx,js,md,yml}": "cspell --no-must-find-files --no-summary",
"*.{ts,tsx}": "eslint --cache --fix --quiet",
"*.{ts,tsx,js,json,css,md,svg,html}": "prettier --write"
},
"postcss": {
"plugins": {
"tailwindcss/nesting": {},
"tailwindcss": {},
"autoprefixer": {}
}
}
}