forked from NMF-earth/nmf-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.45 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test:watch": "jest --watchAll",
"test": "TZ=GMT jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./app",
"typescript": "tsc --noEmit",
"ci": "yarn lint && yarn typescript && yarn test --coverage",
"storybook": "start-storybook -p 7007",
"prestorybook": "rnstl"
},
"jest": {
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"preset": "jest-expo",
"collectCoverageFrom": [
"app/**/*.(js|jsx|ts|tsx)"
]
},
"dependencies": {
"@expo/vector-icons": "10.1.0",
"@react-native-community/datetimepicker": "2.3.2",
"@react-native-community/masked-view": "0.1.6",
"@react-navigation/bottom-tabs": "5.5.2",
"@react-navigation/material-top-tabs": "5.2.10",
"@react-navigation/native": "5.5.1",
"@react-navigation/stack": "5.5.1",
"@reduxjs/toolkit": "1.3.5",
"@types/i18n-js": "3.0.2",
"@types/ramda": "0.26.39",
"@types/react-redux": "7.1.7",
"@types/webpack-env": "1.15.0",
"carbon-footprint": "1.3.4",
"expo": "37.0.10",
"expo-asset": "8.1.5",
"expo-constants": "9.0.0",
"expo-font": "8.1.1",
"expo-localization": "8.1.0",
"expo-web-browser": "8.2.1",
"front-matter": "3.1.0",
"glob": "7.1.6",
"husky": "4.2.5",
"i18n-js": "3.5.1",
"lodash.throttle": "4.1.1",
"markdown-it": "10.0.0",
"moment": "2.24.0",
"paths-js": "0.4.10",
"prop-types": "15.7.2",
"ramda": "0.27.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-i18next": "11.4.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.0.tar.gz",
"react-native-collapsible": "1.5.2",
"react-native-gesture-handler": "1.6.0",
"react-native-globalize": "3.0.0",
"react-native-keyboard-aware-scroll-view": "0.9.1",
"react-native-modal-datetime-picker": "8.5.4",
"react-native-reanimated": "1.7.0",
"react-native-render-html": "4.1.2",
"react-native-safe-area-context": "0.7.3",
"react-native-screens": "2.2.0",
"react-native-svg": "12.1.0",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-persist": "6.0.0",
"redux-thunk": "2.3.0",
"sentry-expo": "2.0.4",
"typescript": "3.8.3",
"uuid": "3.4.0"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@storybook/addon-actions": "5.2.8",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "5.2.8",
"@storybook/addon-ondevice-knobs": "^5.3.19",
"@storybook/addons": "5.2.8",
"@storybook/react-native": "5.2.8",
"@storybook/react-native-server": "5.2.8",
"@types/jest": "25.2.1",
"@types/node": "12.12.18",
"@types/react": "16.9.34",
"@types/react-native": "0.62.5",
"@types/react-test-renderer": "16.9.2",
"@types/uuid": "3.4.6",
"@typescript-eslint/eslint-plugin": "2.11.0",
"@typescript-eslint/parser": "2.11.0",
"babel-loader": "8.1.0",
"babel-preset-expo": "8.1.0",
"eslint": "6.7.2",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-react": "7.17.0",
"jest-expo": "37.0.0",
"react-native-storybook-loader": "1.8.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn ci"
}
},
"config": {
"react-native-storybook-loader": {
"pattern": "**/*.story.tsx",
"outputFile": "./storybook/storyLoader.js"
}
}
}