-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 873 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
{
"name": "acme-monorepo",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"build:apps": "turbo run build --filter=...{./apps/*}",
"build:packages": "turbo run build --filter=...{./packages/**}",
"build:config": "turbo run build --filter=...{./config/**}",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{md,yaml,css,scss}\" -l -u --ignore-path .eslintignore",
"clean": "rimraf --glob **/.next **/.turbo **/dist",
"clean:nm": "rimraf --glob **/node_modules",
"prepare": "husky install"
},
"devDependencies": {
"@acme/eslint-config": "workspace:*",
"@turbo/gen": "^1.10.12",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"turbo": "latest"
}
}