-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.08 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"apps/*"
],
"nohoist": [
"**/html-minifier-terser"
]
},
"name": "finch-graphql-packages",
"scripts": {
"build": "yarn turbo run build",
"dev": "yarn turbo run dev",
"devtools": "yarn workspace finch-graphql-devtools dev chrome",
"docs": "yarn workspace finch-docs start",
"test": "yarn turbo run test",
"compile": "yarn turbo run compile",
"lint": "eslint -c ./.eslintrc.js **/{src,app}/**/*.{ts,tsx,js} --no-error-on-unmatched-pattern"
},
"devDependencies": {
"turbo": "^1.0.20"
},
"turbo": {
"baseBranch": "origin/master",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
"build/**"
]
},
"test": {
"dependsOn": [
"^build"
],
"outputs": []
},
"lint": {
"outputs": []
},
"compile": {
"outputs": []
},
"dev": {
"cache": false
}
}
}
}