-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
96 lines (96 loc) · 3.1 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
{
"name": "nouns-market",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"clean": "rm -rf node_modules",
"download-blocklist": "node ./@blocklist/update_sdnlist.js",
"build": "yarn download-blocklist && next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"typegen": "DOTENV_CONFIG_PATH='./.env.local' graphql-codegen --config typegen.ts --require dotenv/config"
},
"dependencies": {
"@mdx-js/loader": "^2.1.2",
"@popperjs/core": "^2.11.6",
"@n8tb1t/use-scroll-position": "^2.0.3",
"@radix-ui/react-accordion": "^0.1.6",
"@radix-ui/react-checkbox": "^0.1.5",
"@radix-ui/react-dialog": "^0.1.7",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-radio-group": "^0.1.5",
"@radix-ui/react-slider": "^0.1.4",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tabs": "^1.0.0",
"@fontsource/inter": "4.5.10",
"@radix-ui/react-toast": "^1.0.0",
"@rainbow-me/rainbowkit": "^0.7.1",
"@reach/portal": "^0.17.0",
"@reach/utils": "^0.17.0",
"@sentry/nextjs": "^7.13.0",
"@vanilla-extract/babel-plugin": "^1.1.5",
"@vanilla-extract/css": "^1.9.2",
"@vanilla-extract/dynamic": "^2.0.3",
"@vanilla-extract/next-plugin": "^2.1.0",
"@vanilla-extract/recipes": "^0.3.0",
"@vanilla-extract/sprinkles": "^1.5.1",
"@zoralabs/core": "^1.0.1",
"@zoralabs/nft-hooks": "^1.1.10",
"@zoralabs/nouns-protocol": "^1.0.1",
"@zoralabs/v3": "1.0.13",
"@zoralabs/zdk": "^2.2.0",
"assert": "^2.0.0",
"bignumber.js": "^9.0.2",
"date-fns": "^2.28.0",
"dompurify": "^2.3.6",
"ethers": "^5.6.5",
"formik": "^2.2.9",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"next": "12.3.1",
"nextjs-progressbar": "^0.0.14",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intersection-observer": "^9.1.0",
"react-prevent-outside-scroll": "^0.0.2",
"react-polymorphic-types": "^2.0.0",
"react-popper": "^2.3.0",
"swr": "^1.3.0",
"tinycolor2": "^1.4.2",
"ts-loader": "^9.3.1",
"wagmi": "^0.6.7",
"uuid": "^9.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.7",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript": "^2.7.4",
"@graphql-codegen/typescript-operations": "^2.5.4",
"@sentry/webpack-plugin": "^1.19.0",
"@ianvs/prettier-plugin-sort-imports": "^3.7.1",
"@types/dompurify": "^2.3.3",
"@types/gtag.js": "^0.0.10",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.6",
"@types/node": "17.0.23",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/uuid": "^9.0.0",
"@welldone-software/why-did-you-render": "^7.0.1",
"css-loader": "^6.7.1",
"eslint": "8.13.0",
"eslint-config-next": "12.1.5",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "2.6.2",
"typescript": "4.6.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}