-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 979 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 979 Bytes
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
{
"name": "monorepo-template",
"description": "Monorepo template with Next.js, NestJS, Tailwind CSS, Turbo, and Prettier",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@8.7.5",
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"docs",
"web",
"server"
],
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"type-check": "turbo run type-check",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@takanome-dev/eslint-config-base": "1.0.4",
"@takanome-dev/tsconfig": "1.0.3",
"eslint": "^8.0.0",
"eslint-plugin-prettier": "5.0.0-alpha.2",
"eslint-plugin-unused-imports": "^3.0.0",
"next": "13.4.19",
"prettier": "latest",
"turbo": "latest",
"typescript": "^5.0.0"
}
}