-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
package.json
75 lines (75 loc) · 1.47 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "turbo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"docs",
"cli",
"create-turbo"
]
},
"scripts": {
"format": "prettier --write",
"deduplicate": "npx yarn-deduplicate -s fewer yarn.lock",
"deduplicate:check": "npx yarn-deduplicate -s fewer yarn.lock --list --fail",
"docs": "./turbow.sh run dev --scope='docs' --no-cache",
"build": "./turbow.sh run build --scope=docs",
"turbo": "./turbow.sh"
},
"devDependencies": {
"prettier": "^2.5.0",
"simple-git-hooks": "^2.7.0"
},
"lint-staged": {
"**/*.{ts,tsx,md,mdx,js,jsx,.go}": [
"npm run format",
"cd cli && npm run format"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"test": {
"outputs": [
"coverage/**/*"
],
"dependsOn": [
"^build"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"build": {
"outputs": [
"dist/**/*",
".next/**/*"
],
"dependsOn": [
"^build"
]
},
"cli#build": {
"outputs": [
"turbo",
"turbo.exe"
],
"dependsOn": []
},
"create-turbo#test": {
"dependsOn": [
"create-turbo#build"
],
"outputs": []
}
}
}
}