generated from public-assembly/neosound-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "create-net-label",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf node_modules",
"pretty": "prettier --write ."
},
"dependencies": {
"@fontsource/ia-writer-mono": "^4.5.3",
"@fontsource/inter": "^4.5.12",
"@public-assembly/curation-interactions": "^0.0.18-pre",
"@public-assembly/erc721-drops-minter": "^0.0.7",
"@public-assembly/zora-drops-utils": "^0.1.0",
"@rainbow-me/rainbowkit": "^0.5.0",
"@zoralabs/nft-drop-contracts": "^1.0.1",
"@zoralabs/nouns-protocol": "^1.0.1",
"@zoralabs/zdk": "^2.2.0",
"bignumber.js": "^9.1.0",
"date-fns": "^2.29.3",
"dayjs": "^1.11.6",
"ethers": "^5.7.0",
"framer-motion": "^7.6.18",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"lodash": "^4.17.21",
"next": "12.2.5",
"nextjs-progressbar": "^0.0.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^1.3.0",
"wagmi": "^0.6.4"
},
"devDependencies": {
"@mdx-js/loader": "^2.1.3",
"@tailwindcss/forms": "^0.5.3",
"@types/lodash": "^4.14.184",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"assert": "^2.0.0",
"autoprefixer": "^10.4.9",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "4.8.2"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write ."
]
}
}