-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.17 KB
/
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
49
50
51
52
53
54
55
56
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean; rm -rf node_modules",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "lerna run test",
"watch": "lerna run --parallel watch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^5.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.5.1",
"tsdx": "^0.14.1",
"typescript": "^4.5.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,json}": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"workspaces": {
"nohoist": [
"repick-react/@types/react"
],
"packages": [
"packages/*"
]
},
"jest": {
"snapshotSerializers": [
"jest-date-serializer"
]
}
}