-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 722 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 722 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
{
"name": "yarnhook-monorepo",
"private": true,
"devDependencies": {
"execa": "^4.0.3",
"flow-bin": "^0.135.0",
"husky": "^4.3.0",
"jest": "^26.5.2",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && flow"
}
},
"lint-staged": {
"*.{js,json,css,md}": "prettier --write"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "none",
"arrowParens": "avoid",
"proseWrap": "always"
}
}