-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.31 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
{
"name": "spacedlearn",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"storybook": "storybook start"
},
"dependencies": {
"@react-native-community/async-storage": "^1.3.3",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-context": "^1.0.17",
"apollo-link-error": "^1.1.10",
"apollo-link-http": "^1.5.14",
"cross-fetch": "^3.0.2",
"formik": "^1.5.2",
"graphql": "^14.2.1",
"graphql-tag": "^2.10.1",
"i18n-js": "^3.2.1",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "16.8.3",
"react-apollo": "^2.5.4",
"react-native": "0.59.5",
"react-native-floating-labels": "^1.1.9",
"react-native-gesture-handler": "^1.1.0",
"react-native-linear-gradient": "^2.5.4",
"react-navigation": "^3.8.1",
"react-navigation-hooks": "^1.0.0-alpha.2",
"recompose": "^0.30.0",
"styled-components": "^4.2.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@storybook/addon-actions": "^5.0.10",
"@storybook/addon-links": "^5.0.10",
"@storybook/addon-storyshots": "^5.0.10",
"@storybook/addons": "^5.0.10",
"@storybook/react-native": "5.1.0-alpha.10",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-native": "^3.6.0",
"jest": "^24.7.1",
"metro-react-native-babel-preset": "^0.53.1",
"prettier": "^1.17.0",
"react-test-renderer": "16.8.3"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"moduleNameMapper": {
"styled-components": "<rootDir>/node_modules/styled-components/native/dist/styled-components.native.cjs.js",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/assetsTransformer.js",
"\\.(css|less)$": "<rootDir>/assetsTransformer.js"
}
}
}