-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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": "dongbei-kang-bbq",
"description": "An NFT marketplace DApp",
"version": "0.0.0",
"private": true,
"author": {
"name": "Caven",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"prepare": "simple-git-hooks",
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"up": "taze major -I",
"shadcn:add": "bunx shadcn-ui@latest add"
},
"dependencies": {
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.414.0",
"next": "15.0.0-rc.0",
"next-themes": "^0.3.0",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522",
"sonner": "^1.5.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"thirdweb": "^5.38.0"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8",
"eslint-config-next": "15.0.0-rc.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.6",
"taze": "^0.16.1",
"typescript": "^5.5.4"
},
"simple-git-hooks": {
"pre-commit": "bun run lint-staged --concurrent false"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write .",
"next lint --fix ."
]
}
}