-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"name": "clevercoffee-docs",
"version": "0.1.0",
"private": true,
"homepage": "https://cellcortex.github.io/clevercoffee-docs",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"type-check": "tsc",
"clean": "rm -rf .next out",
"postbuild": "pagefind --site .next/server/app --output-path out/_pagefind",
"deploy": "gh-pages -t -d out"
},
"dependencies": {
"next": "15.1.5",
"next-intl": "^3.26.3",
"next-seo": "^6.6.0",
"nextra": "^4.0.4",
"nextra-theme-docs": "^4.0.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.0.0-beta.8",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.5",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"pagefind": "^1.3.0",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.0-beta.8",
"typescript": "^5"
},
"lint-staged": {
"src/**/*.{ts,json,md}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
}
}