-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 946 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
{
"name": "root",
"private": true,
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@typescript-eslint/eslint-plugin": "4.31.0",
"@typescript-eslint/parser": "4.31.0",
"eslint": "7.32.0",
"eslint-plugin-sonarjs": "0.10.0",
"eslint-plugin-unicorn": "36.0.0",
"husky": "7.0.2",
"import-sort-style-react": "^5.1.0",
"lerna": "^4.0.0",
"lint-staged": "11.1.2",
"prettier": "2.4.0",
"prettier-plugin-import-sort": "0.0.7",
"standard-version": "9.3.1",
"typescript": "4.4.3"
},
"scripts": {
"format": "lerna run format",
"lint": "lerna run lint",
"prepare": "husky install",
"release": "standard-version"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "react"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write --prose-wrap always"
]
}
}