forked from BearStudio/start-ui-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) Β· 4.2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "start-ui-native",
"version": "0.0.1",
"private": true,
"description": "Opinionated UI starter with βοΈ React-Native, β¬’ Native Base 3, βοΈ React Query & π Formiz β From the π» BearStudio Team",
"scripts": {
"prepare": "husky install",
"set:env:local": "./scripts/set-env.sh local",
"set:env:dev": "./scripts/set-env.sh dev",
"set:env:staging": "./scripts/set-env.sh staging",
"set:env:prod": "./scripts/set-env.sh prod",
"start": "react-native start",
"dev": "react-native start",
"android": "react-native run-android",
"android:build:dev": "yarn jetify && ./scripts/android-build.sh dev",
"android:build:staging": "yarn jetify && ./scripts/android-build.sh staging",
"android:build:prod": "yarn jetify && ./scripts/android-build.sh prod",
"android:bundle:dev": "yarn jetify && ./scripts/android-bundle.sh dev",
"android:bundle:staging": "yarn jetify && ./scripts/android-bundle.sh staging",
"android:bundle:prod": "yarn jetify && ./scripts/android-bundle.sh prod",
"ios": "react-native run-ios",
"ios:open": "open ios/StartUINativeApp.xcworkspace",
"ios:install:intel": "cd ios/ && pod install",
"ios:install:arm": "cd ios/ && arch -x86_64 pod install",
"test": "jest --roots ./src",
"lint": "eslint . --fix",
"pretty": "prettier -w .",
"postinstall": "patch-package"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": "prettier --write",
"*.{ts,tsx,js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@formiz/core": "1.8.0",
"@formiz/validations": "1.0.0",
"@react-native-async-storage/async-storage": "1.15.8",
"@react-native-community/hooks": "2.6.0",
"@react-native-community/masked-view": "0.1.11",
"@react-navigation/bottom-tabs": "6.3.2",
"@react-navigation/native": "6.0.11",
"@react-navigation/stack": "6.2.2",
"axios": "0.21.4",
"husky": "7.0.2",
"native-base": "3.3.7",
"react": "18.0.0",
"react-native": "0.69.0",
"react-native-dotenv": "3.3.1",
"react-native-gesture-handler": "2.4.2",
"react-native-hide-with-keyboard": "1.2.1",
"react-native-reanimated": "2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "3.15.0",
"react-native-svg": "12.1.1",
"react-native-vector-icons": "9.1.0",
"react-native-version-number": "0.3.6",
"react-query": "3.34.15",
"styled-components": "5.3.1",
"styled-system": "5.1.5"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/runtime": "7.15.4",
"@react-native-community/eslint-config": "3.0.1",
"@storybook/addon-actions": "5.3.21",
"@storybook/addon-knobs": "5.3.21",
"@storybook/addon-links": "5.3.21",
"@storybook/addon-ondevice-actions": "5.3.23",
"@storybook/addon-ondevice-knobs": "5.3.25",
"@storybook/react-native": "5.3.25",
"@storybook/react-native-server": "5.3.23",
"@trivago/prettier-plugin-sort-imports": "2.0.4",
"@types/jest": "27.0.2",
"@types/react": "17.0.27",
"@types/react-native": "0.65.1",
"@types/react-test-renderer": "17.0.1",
"babel-jest": "27.2.4",
"babel-loader": "8.2.2",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "6.1.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-native": "3.11.0",
"jest": "27.2.4",
"jest-transform-stub": "2.0.0",
"lint-staged": "11.2.0",
"metro-react-native-babel-preset": "0.70.3",
"miragejs": "^0.1.45",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"react-dom": "17.0.2",
"react-native-dev-menu": "4.0.2",
"react-native-network-info": "5.2.1",
"react-test-renderer": "18.0.0",
"typescript": "4.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bearstudio/start-ui-native.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bearstudio/start-ui-native/issues"
},
"homepage": "https://github.com/bearstudio/start-ui-native#readme",
"eslintConfig": {
"globals": {
"window": true
}
}
}