-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.72 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
{
"name": "nextjs-ts-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"type-check": "tsc",
"lint": "next lint & npm run lint:md",
"lint:md": "markdownlint --ignore-path .gitignore . --config ./markdownlint-config.js",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore . --config ./markdownlint-config.js",
"format": "prettier --write \"**/*.{css,js,jsx,ts,tsx,json}\"",
"update-git-hooks": "npx simple-git-hooks",
"prepare": "npm run update-git-hooks"
},
"dependencies": {
"framer-motion": "^11.5.2",
"next": "^14.2.7",
"next-sitemap": "^4.2.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"tailwindcss-safe-area": "^0.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@svgr/webpack": "^8.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.5.3",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.7",
"eslint-config-prettier": "^9.1.0",
"file-loader": "^6.2.0",
"lint-staged": "^15.2.10",
"markdownlint-cli": "^0.41.0",
"postcss": "^8.4.45",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"simple-git-hooks": "^2.11.1",
"svgo-loader": "^4.0.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"url-loader": "^4.1.1"
}
}