-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.42 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
{
"name": "znft-indra",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install",
"clean": "rm -rf .next"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.1",
"@vercel/analytics": "^1.2.2",
"@zoralabs/nft-components": "1.1.2",
"@zoralabs/nft-hooks": "1.1.8",
"@zoralabs/zdk": "^2.2.0",
"graphql": "^16.8.1",
"next": "12",
"react": "17",
"react-dom": "17",
"react-fast-marquee": "^1.3.2",
"react-flow-renderer": "^10.3.12",
"swr": "^1.3.0",
"urql": "^2.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "20.8.9",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.16",
"eslint": "8.52.0",
"eslint-config-next": "12",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"react-spring": "^9.7.3",
"tailwindcss": "^3.3.5",
"typescript": "5.2.2"
},
"peerDependencies": {
"react": ">= 17 < 19",
"react-dom": ">= 17 < 19"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"pnpm prettier"
]
}
}