-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1016 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
35
36
{
"name": "@bos-web-engine/monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --concurrency=30",
"dev:components": "turbo run dev:components --concurrency=30",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"autoclave": "rimraf rimraf apps/**/.next && rimraf apps/**/node_modules && rimraf apps/**/.turbo && rimraf packages/**/lib && rimraf packages/**/node_modules && rimraf packages/**/.turbo && rm -rf node_modules",
"prepare": "husky install"
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"husky": "^8.0.0",
"next": "^13.5.6",
"prettier": "latest",
"rimraf": "^5.0.1",
"turbo": "^1.13.2"
},
"engines": {
"node": ">=18.17.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@babel/traverse": "7.23.2"
}
}
}