-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 978 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
{
"name": "acme-monorepo",
"private": true,
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"preview": "turbo preview",
"type-check": "turbo type-check",
"analyze": "turbo analyze",
"lint": "turbo lint lint:root",
"lint:root": "eslint \"*.{js,cjs,mjs,ts,cts,mts}\" --fix",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,cts,mts,tsx,vue,md,json,html,css,scss}\" -l -u",
"lf": "pnpm lint && pnpm format",
"clean": "rimraf --glob **/dist **/.nuxt **/.turbo **/.output **/node_modules/.vite **/node_modules/.cache **/inspect **/storybook-static **/*.tsbuildinfo **/.netlify",
"clean:all": "pnpm clean && rimraf --glob **/node_modules"
},
"devDependencies": {
"@eslint/compat": "^1.2.0",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"turbo": "^2.1.3",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}