-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.83 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
{
"name": "promed",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"restart": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"test": "jest --detectOpenHandles",
"lint": "./node_modules/.bin/eslint src",
"validate": "scripts/validate.sh",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && yarn cache clean",
"clear": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build/ModuleCache/* && rm -rf android/app/build && rm -rf node_modules/ && yarn cache clean",
"watchmant-stop": "watchman watch-del-all",
"ios": "react-native run-ios",
"ios-release": "react-native run-ios --configuration Release",
"android": "react-native run-android",
"link-fonts": "react-native link assets",
"storybook": "storybook start -c src/config/storybook",
"prestorybook": "rnstl",
"scripts-execution-permissions": "chmod u+x scripts/*",
"check-version": "scripts/version.sh",
"bump-version": "scripts/version.sh",
"refresh-dotenv": "scripts/forceEnvFileRrefresh.sh",
"refresh-dotenv-watch": "watchman-make -p '.env' '.env.*' -r scripts/forceEnvFileRrefresh.sh",
"fix-storybook": "scripts/fixAdrianMacbook.sh"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./src"
],
"pattern": "**/*.stories.js",
"outputFile": "./src/config/storybook/storyLoader.js"
}
},
"rnpm": {
"assets": [
"./src/assets/fonts/"
]
},
"dependencies": {
"apisauce": "^1.0.0",
"approvejs": "^3.1.2",
"classnames": "^2.2.6",
"i18n-js": "^3.0.11",
"lodash": "^4.17.11",
"moment": "2.24.0",
"prop-types": "^15.6.2",
"react": "16.6.3",
"react-native": "0.58.5",
"react-native-action-sheet": "^2.2.0",
"react-native-cli": "^2.0.1",
"react-native-gesture-handler": "1.0.16",
"react-native-languages": "^3.0.1",
"react-native-linear-gradient": "2.4.0",
"react-native-safe-area-view": "^0.11.0",
"react-native-skeleton": "https://github.com/Waavi/react-native-skeleton.git",
"react-native-utils": "https://github.com/Waavi/react-native-utils.git#0.1.1",
"react-native-vector-icons": "^6.0.2",
"react-native-webview": "^5.2.1",
"react-navigation": "^3.0.0",
"react-navigation-redux-helpers": "^2.0.8",
"react-redux": "6.0.1",
"redux": "^4.0.1",
"redux-form": "^8.1.0",
"redux-persist": "^5.10.0",
"redux-saga": "1.0.1",
"redux-saga-test-plan": "4.0.0-beta.2",
"reduxsauce": "1.0.1",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.1.2",
"@storybook/addon-actions": "^4.0.2",
"@storybook/addon-knobs": "^4.0.7",
"@storybook/addon-links": "^4.0.2",
"@storybook/addon-ondevice-knobs": "^4.0.2",
"@storybook/addon-ondevice-notes": "^4.0.2",
"@storybook/addons": "^4.0.2",
"@storybook/react-native": "^4.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "24.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.1.1",
"babel-runtime": "^6.26.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-react-native": "^4.0.0",
"eslint-import-resolver-babel-module": "5.0.0-beta.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"jest": "24.1.0",
"jest-enzyme": "^7.0.1",
"metro-react-native-babel-preset": "0.52.0",
"prettier": "^1.14.3",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.8.3",
"react-native-dotenv": "^0.2.0",
"react-native-storybook-loader": "^1.8.0",
"react-test-renderer": "16.6.3",
"reactotron-react-native": "2.2.0",
"reactotron-redux": "^2.1.3",
"reactotron-redux-saga": "4.1.0"
}
}