-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1001 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": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint packages/ --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"postinstall": "husky install"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"husky": "^7.0.4",
"jest": "^26.4.2",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^12.3.7",
"ts-jest": "^26.2.0",
"typescript": "~3.9.7",
"prettier": "^2.6.2"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.ts": [
"eslint --fix"
]
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"semi": false
}
}