-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.44 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
57
{
"private": true,
"workspaces": [
"common",
"web",
"native"
],
"keywords": [
"react-native",
"react",
"yarn-workspaces",
"monorepo",
"ios",
"android",
"pwa"
],
"scripts": {
"start": "concurrently \"yarn web\" \"yarn native\"",
"web": "yarn workspace web start",
"build:web": "yarn workspace web build",
"native": "yarn workspace native start",
"android": "yarn workspace native android",
"studio": "yarn workspace native studio",
"ios": "yarn workspace native ios",
"xcode": "yarn workspace native xcode",
"pod": "cd ./native/ios && pod install",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && rm -rf native/ios/Pods"
},
"devDependencies": {
"airbnb": "^0.0.2",
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/!(node_modules)/*.{js,jsx,ts,tsx}": [
"pretty-quick —-staged",
"eslint --fix"
]
}
}