-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 859 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 859 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
{
"name": "turbostrapi",
"private": true,
"workspaces": [
"apps/*",
"configs/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo clean && git clean -xdf node_modules",
"clean:git": "git clean -xdf",
"dev": "turbo run dev",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache'",
"format:fix": "yarn format -- --write",
"preinstall": "npx only-allow yarn",
"lint": "turbo run lint"
},
"prettier": "@turbostrapi/prettier-config",
"devDependencies": {
"@turbostrapi/prettier-config": "*",
"@turbostrapi/tsconfig": "*",
"eslint": "^8.55.0",
"prettier": "^3.1.1",
"turbo": "^1.11.1"
},
"packageManager": "yarn@1.22.0",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"yarn": ">=1.22.0"
}
}