forked from miroapp/app-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "app-examples",
"private": true,
"repository": "[email protected]:miroapp/app-examples.git",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"ci:prettier": "prettier -l ./",
"ci:lint": "eslint --quiet ./"
},
"devDependencies": {
"@mirohq/prettier-config": "1.0.0",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.2",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.2.5",
"lerna": "4.0.0",
"lint-staged": "11.0.0",
"prettier": "2.3.0",
"typescript": "4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,json,md,ts,js,tsx}": [
"prettier --write"
],
"*.{ts,js,tsx}": [
"eslint"
]
},
"browserslist": [
">0.25%",
"not op_mini all",
"not ie <= 11"
]
}