-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2 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
{
"name": "app",
"version": "0.1.2",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"vendor": "webpack --config webpack.vendor.js",
"optimize": "better-npm-run optimize",
"web": "node webpack.devserver",
"bundle": "better-npm-run bundle",
"ios": "react-native run-ios",
"android": "react-native run-android"
},
"betterScripts": {
"bundle": {
"env": {
"ENV": "production"
},
"command": "webpack --config webpack.config.js --progress"
},
"optimize": {
"env": {
"OPTIMIZE": "true"
},
"command": "webpack-dev-server --hot"
}
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-native": "0.52.2",
"react-native-drawer": "^2.3.0",
"react-native-web": "^0.5.4",
"react-universal-ui": "^0.2.14",
"universal-vector-icons": "^4.4.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "22.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react-native": "^4.0.0",
"better-npm-run": "^0.1.0",
"colors": "^1.1.2",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.0",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"jest": "22.1.4",
"json-loader": "^0.5.7",
"progress-bar-webpack-plugin": "^1.10.0",
"react-hot-loader": "3.0.0-beta.7",
"react-test-renderer": "16.2.0",
"redux-logger": "^3.0.6",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
},
"jest": {
"preset": "react-native"
}
}