-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.85 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.85 KB
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
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"keywords": [
"react-native",
"react",
"yarn-workspaces",
"monorepo",
"ios",
"android",
"pwa"
],
"workspaces": [
"web",
"native",
"common"
],
"scripts": {
"android": "yarn workspace native android",
"build:android": "yarn workspace native build:android",
"build:web": "yarn workspace web build",
"clean": "./clean.js",
"ios": "yarn workspace native ios",
"lint": "eslint --fix \"**/!(node_modules)/*.{js,jsx,ts,tsx}\"",
"macos": "yarn workspace native macos",
"native": "yarn workspace native start",
"pod": "cd ./native/ios && pod install",
"start": "concurrently -n W,N \"yarn web\" \"yarn native\"",
"studio": "yarn workspace native studio",
"sync": "concurrently -n W,N \"yarn workspace web sync\" \"yarn workspace native sync\"",
"web": "yarn workspace web start",
"xcode": "yarn workspace native xcode"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/!(node_modules)/*.{js,jsx,ts,tsx}": [
"pretty-quick —-staged",
"eslint --fix"
]
},
"devDependencies": {
"airbnb": "^0.0.2",
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"copyfiles": "^2.3.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",
"glob": "^7.1.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"sync-directory": "^2.2.2"
},
"dependencies": {
"react-native-tailwindcss": "https://github.com/Faisal-Manzer/react-native-tailwindcss.git"
}
}