forked from mcnamee/react-native-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.68 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "rnsk",
"homepage": "http://react-boilerplate.mcnam.ee/",
"version": "0.1.0",
"private": true,
"devDependencies": {
"autoprefixer": "^8.3.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-react-transform": "^3.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^1.0.0",
"gulp": "^3.9.1",
"jest-expo": "~27.0.0",
"json-loader": "^0.5.7",
"node-sass": "^4.8.3",
"postcss-loader": "^2.1.6",
"react-native-scripts": "1.14.0",
"react-test-renderer": "16.3.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.5.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-hot-middleware": "^2.22.3"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js --watch",
"web": "webpack-dev-server --content-base build/ --config webpack/web.dev.config.js --mode development --port 3001 --inline --hot --colors --historyApiFallback",
"web-bundle": "webpack --config webpack/web.prod.config.js --progress --colors --mode production",
"clear-cache": "gulp clear-cache",
"debug": "open 'rndebugger://set-debugger-loc?host=localhost&port=19001'"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^6.3.1",
"babel": "^6.23.0",
"babel-eslint": "^8.2.6",
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.1.3",
"cssnano": "^4.0.4",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.7.0",
"expo": "^27.0.1",
"firebase": "^5.3.0",
"morgan": "^1.9.0",
"native-base": "^2.4.2",
"object-assign": "^4.1.1",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-native": "~0.55.2",
"react-native-router-flux": "4.0.0-beta.31",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"reactstrap": "^6.3.1",
"redux": "^4.0.0",
"redux-persist": "^5.9.1",
"redux-thunk": "^2.2.0",
"sugarss": "^1.0.1",
"superagent": "^3.8.2"
}
}