-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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": "coins",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"build": "next build",
"dev": "next --turbo",
"format": "prettier --write --list-different .",
"knip": "knip",
"lint": "prettier --check . && next lint",
"prebuild": "rimraf out",
"prepare": "husky",
"serve": "serve out",
"start": "next start"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@t3-oss/env-nextjs": "^0.11.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.453.0",
"next": "14.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-wrap-balancer": "^1.1.1",
"sharp": "^0.33.5",
"spreadorm": "^1.0.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "8.0.1",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^9.1.6",
"knip": "^5.33.3",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14",
"typescript": "~5.4.5"
}
}