-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "neosound",
"version": "0.0.1",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rimraf --no-glob .next node_modules",
"pretty": "prettier --write ."
},
"dependencies": {
"@fontsource/barlow": "^4.5.9",
"@fontsource/ia-writer-mono": "^4.5.3",
"@fontsource/inter": "^4.5.12",
"@public-assembly/audio-player-ui": "^0.1.1",
"@public-assembly/curation-interactions": "^0.0.18-pre",
"@public-assembly/erc721-drops-minter": "^0.0.8",
"@public-assembly/zora-drops-utils": "^0.1.1",
"@rainbow-me/rainbowkit": "^0.5.0",
"@zoralabs/nft-drop-contracts": "^1.0.1",
"@zoralabs/zdk": "^2.2.0",
"ethers": "^5.7.1",
"framer-motion": "^7.5.1",
"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",
"react-icons": "^4.4.0",
"react-prevent-outside-scroll": "^0.0.2",
"swr": "^1.3.0",
"wagmi": "^0.6.7"
},
"devDependencies": {
"@mdx-js/loader": "^2.1.3",
"@types/lodash": "^4.14.184",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@zoralabs/eslint-config": "^0.0.1",
"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",
"postcss-import": "^15.0.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"rimraf": "^3.0.2",
"tailwindcss": "^3.1.8",
"tsc-files": "^1.1.3",
"typescript": "4.8.2"
},
"lint-staged": {
"**/*": [
"prettier --write ."
]
},
"engines": {
"node": "^14.13.1 || >=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"packageManager": "yarn@1.22.1"
}