This repository was archived by the owner on Aug 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "Fiji",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"storybook": "storybook start -p 7007",
"prestorybook": "rnstl"
},
"config": {
"react-native-storybook-loader": {
"searchDir": [
"./app"
],
"pattern": "**/*.stories.js",
"outputFile": "./storybook/storyLoader.js"
}
},
"dependencies": {
"@storybook/cli": "^3.3.12",
"appcenter": "^1.1.0",
"appcenter-analytics": "^1.1.0",
"appcenter-crashes": "^1.1.0",
"buffer": "^5.0.8",
"cuid": "^2.0.1",
"jest-cli": "^22.0.6",
"lottie-react-native": "^2.3.1",
"pouchdb-react-native": "^6.4.0",
"react": "16.2.0",
"react-native": "0.53.0",
"react-native-animatable": "^1.2.4",
"react-native-camera": "^0.13.0",
"react-native-elements": "^0.18.5",
"react-native-emoticons": "^1.0.9",
"react-native-fs": "^2.9.7",
"react-native-image-resizer": "^1.0.0",
"react-native-orientation": "^3.1.3",
"react-native-scrollable-tab-view": "^0.8.0",
"react-native-sound": "^0.10.4",
"react-native-super-grid": "^2.0.2",
"react-native-svg": "^6.0.1-rc.1",
"react-native-svg-uri": "^1.2.3",
"react-native-tts": "^1.5.0",
"react-native-vector-icons": "^4.4.3",
"react-navigation": "^1.0.0-beta.22",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.13",
"@storybook/addon-links": "^3.3.13",
"@storybook/addons": "^3.3.13",
"@storybook/react-native": "^3.3.13",
"babel-core": "^6.26.0",
"babel-jest": "22.0.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "4.0.0",
"babel-preset-stage-0": "^6.24.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.6",
"prop-types": "^15.6.0",
"react-dom": "16.0.0",
"react-native-storybook-loader": "^1.7.0",
"react-test-renderer": "16.0.0",
"redux-mock-store": "^1.4.0"
},
"jest": {
"preset": "react-native",
"globals": {
"__DEV__": true
},
"transform": {
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
],
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "identity-obj-proxy"
}
}
}