-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"name": "react-native-skeleton",
"version": "0.0.1",
"license": "Apache-2.0",
"homepage": "https://github.com/fxdemolisher/react-native-skeleton",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/fxdemolisher/react-native-skeleton"
},
"scripts": {
"postinstall": "sed 's/#import <RCTAnimation\\/RCTValueAnimatedNode.h>/#import \"RCTValueAnimatedNode.h\"/' < ./node_modules/react-native/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h > tmp.h && mv tmp.h ./node_modules/react-native/Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h",
"start": "node node_modules/react-native/local-cli/cli.js start"
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-native": "^2.1.0",
"babel-root-slash-import": "^1.1.0",
"color": "^2.0.0",
"moment": "^2.18.1",
"react": "16.0.0-alpha.12",
"react-mixin": "^3.0.5",
"react-native": "^0.46.4",
"react-native-linear-gradient": "^2.1.0",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.5",
"react-timer-mixin": "^0.13.3",
"redux": "^3.7.2",
"redux-action-buffer": "^1.1.0",
"redux-persist": "^4.8.3",
"redux-persist-migrate": "^4.1.0",
"redux-thunk": "^2.2.0"
},
"babel": {
"plugins": [
[
"babel-root-slash-import",
{
"rootPathSuffix": "js"
}
]
],
"presets": [
"react-native"
]
},
"jest": {
"preset": "jest-expo",
"modulePathIgnorePatterns": [
"/node_modules/.*/react-native/",
"/node_modules/.*/react/"
],
"transformIgnorePatterns": [
"/node_modules/(?!react-native|react-navigation)/"
]
}
}