-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "rn-mdx-root",
"version": "0.0.0",
"main": "index.js",
"repository": "[email protected]:danieldunderfelt/rn-mdx.git",
"author": "Daniel Dunderfelt <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"setup:git-hooks": "yarn husky uninstall && yarn husky install || exit 0",
"format": "prettier --write \"**/*.{tsx,ts,js,json}\"",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "eslint '**/*.{js,ts,tsx}' --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*/**/*.{js,ts,tsx}": "eslint --max-warnings 0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0",
"expo-yarn-workspaces": "^1.6.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"metro-config": "^0.66.2",
"prettier": "^2.3.0"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}