-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.61 KB
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
71
72
73
74
75
76
77
78
79
{
"name": "next-js-base",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm run translations && next dev --turbopack",
"build": "pnpm run format && pnpm run translations && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint ./src --fix",
"prepare": "husky",
"translations:extract": "lingui extract --clean",
"translations:compile": "lingui compile",
"translations": "pnpm run translations:extract && pnpm run translations:compile",
"format": "prettier --write ."
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@hookform/resolvers": "^5.0.1",
"@lingui/core": "^5.4.1",
"@lingui/format-po": "^5.4.1",
"@lingui/react": "^5.4.1",
"@tanstack/react-query": "^5.80.6",
"axios": "^1.9.0",
"big.js": "^7.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"js-big-decimal": "2.1.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.510.0",
"motion": "^12.23.12",
"next": "15.5.15",
"radix-ui": "^1.4.3",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-hook-form": "^7.56.3",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.4",
"zustand": "^5.0.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@lingui/cli": "^5.4.1",
"@lingui/loader": "^5.4.1",
"@lingui/macro": "^5.4.1",
"@lingui/swc-plugin": "5.7.0",
"@tailwindcss/postcss": "^4",
"@tanstack/eslint-plugin-query": "^5.74.7",
"@types/big.js": "^6.2.2",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"react-scan": "^0.5.3",
"tailwindcss": "4.1.11",
"typescript": "^5"
},
"lint-staged": {
"!src/public/**/*.{js,jsx,ts,tsx}": "echo 'skip public'",
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}