-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "react-native-web-boilerplate",
"version": "0.0.1",
"description": "react-native-web boilerplate",
"engines": {
"node": ">=6.0.0"
},
"author": "agrcrobles@gmail.com",
"license": "MIT",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"test": "jest",
"web": "webpack-dev-server --config web/webpack.config.js",
"flow": "flow"
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-native": "0.45.1",
"react-native-vector-icons": "^4.2.0",
"react-native-web": "0.0.x",
"react-navigation": "^1.0.0-beta.11",
"tricky-components": "0.0.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "6.1.2",
"babel-jest": "20.0.3",
"babel-loader": "^6.2.10",
"babel-preset-react-native": "2.0.0",
"file-loader": "^0.10.0",
"flow-bin": "^0.45.0",
"jest": "20.0.4",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "^16.0.0-alpha.12",
"url-loader": "^0.5.7",
"webpack": "^2.3.0",
"webpack-dev-server": "^2.4.2"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation)"
]
}
}