-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 866 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
{
"name": "nextjs-strapi-boilerplate",
"private": true,
"author": "Abderrahmane MOUZOUNE",
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*",
"configs/*"
],
"scripts": {
"init-env": "node init-env.js",
"dev": "turbo run dev",
"dev:front": "turbo run dev --filter=./apps/frontend",
"dev:back": "turbo run dev --filter=./apps/backend",
"build": "turbo run build",
"clean": "turbo run clean",
"clean:turbo": "git clean -xdf .turbo node_modules",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore"
},
"license": "ISC",
"devDependencies": {
"husky": "^9.1.4",
"prettier": "^3.1.1",
"turbo": "^2.0.14"
},
"engines": {
"node": ">=18.18.0 <=20.x.x",
"npm": ">=9.0.0",
"yarn": ">=1.22.0"
}
}