-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.4 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
80
81
{
"name": "@idea2app/next-shadcn-ts",
"version": "0.3.0",
"description": "React project scaffold based on TypeScript, Next.js, shadcn/ui & Tailwind CSS.",
"private": true,
"dependencies": {
"@formatjs/intl-localematcher": "^0.8.10",
"@serwist/next": "^9.5.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"edkit": "^1.2.7",
"koajax": "^3.3.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^1.23.0",
"mobx": "^6.16.1",
"mobx-github": "^0.6.2",
"mobx-i18n": "^0.7.5",
"mobx-react": "^9.2.2",
"mobx-react-helper": "^0.5.1",
"mobx-restful": "^2.1.4",
"negotiator": "^1.0.0",
"next": "^16.2.10",
"next-ssr-middleware": "^0.9.2",
"radix-ui": "^1.6.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"web-utility": "^4.7.2"
},
"devDependencies": {
"@cspell/eslint-plugin": "^10.0.1",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "^16.2.10",
"@octokit/openapi-types": "^27.0.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@tailwindcss/postcss": "^4.3.2",
"@types/eslint-config-prettier": "^6.11.3",
"@types/lodash.debounce": "^4.0.9",
"@types/negotiator": "^0.6.4",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"prettier-plugin-css-order": "^2.2.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"shadcn-helper": "^0.5.9",
"serwist": "^9.5.11",
"tailwindcss": "^4.3.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.62.1"
},
"prettier": {
"plugins": [
"prettier-plugin-css-order",
"prettier-plugin-tailwindcss"
]
},
"lint-staged": {
"*.{html,md,less,json,yml,js,mjs,ts,tsx}": "prettier --write",
"*.{css,js,mjs,ts,tsx}": "eslint --fix"
},
"scripts": {
"install": "npx shadcn-helper install || true",
"prepare": "husky || true",
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint:inspect": "eslint --inspect-config",
"test": "lint-staged"
}
}