-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "nextjs-ts-tailwind-starter",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:strict": "eslint --max-warnings=0 src",
"format": "prettier -w .",
"format:check": "prettier -c .",
"typecheck": "tsc --noEmit --incremental false"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.3",
"framer-motion": "^12.2.0",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"clsx": "^2.1.1",
"eslint": "9.18.0",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.3",
"typescript": "^5.7.3"
}
}