-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 926 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
45
46
47
48
{
"name": "@svef/www",
"private": true,
"author": {
"name": "Samtök vefiðnaðarins",
"email": "[email protected]",
"url": "https://www.svef.is"
},
"contributors": [
{
"name": "Benedikt D Valdez",
"email": "[email protected]",
"url": "https://www.valdez.is"
}
],
"workspaces": [
"applications/**",
"library/**"
],
"scripts": {},
"devDependencies": {
"husky": "^1.1.4",
"lerna": "3.4.3",
"lint-staged": "^8.0.4",
"prettier": "^1.15.2"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"semi": false,
"useTabs": false
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}