-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 908 Bytes
/
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
{
"name": "nextjs-travel",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"check-dependencies": "sherif",
"bump-deps": "npx npm-check-updates --deep -u -x geist && pnpm install",
"bump-ui": "npx shadcn@latest add --all --overwrite -c packages/design-system",
"clean": "git clean -xdf node_modules"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"sherif": "^1.1.1",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"pnpm": {
"overrides": {
"next": "^15.1.5",
"react": "19.0.0",
"react-dom": "19.0.0",
"@types/react": "^19.0.7"
}
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=22"
}
}