-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 880 Bytes
/
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
{
"name": "@isthatcentered/mono",
"version": "1.0.0",
"main": "index.js",
"author": "Edouard",
"license": "MIT",
"private": true,
"scripts": {
"pretty": "yarn pretty-quick",
"clean": "npx lerna clean -y && rm -rf node_modules && npx lerna bootstrap"
},
"devDependencies": {
"commitizen": "^4.0.3",
"husky": "^3.0.9",
"lerna": "^3.18.3",
"lerna-wizard": "^1.1.1",
"prettier": "1.18.2",
"pretty-quick": "^2.0.0"
},
"workspaces": [
"./packages/*"
],
"nohoist": [],
"husky": {
"hooks": {
"pre-commit": "yarn pretty-quick --staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"arrowParens": "avoid",
"useTabs": true,
"semi": false,
"singleQuote": false,
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false
}
}