-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 716 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 716 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
34
35
36
37
{
"scripts": {
"build": "turbo run build"
},
"devDependencies": {
"nano-staged": "^0.4.5",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.7.0",
"turbo": "^1.0.4",
"use-idb-keyval": "workspace:*"
},
"turbo": {
"baseBranch": "origin/master",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**"]
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
}
}
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.ts": "npx --no prettier --write"
}
}