-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.65 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
{
"name": "qa-react-native-technical-test",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-plugin-react-native-web": "^0.8.6",
"babel-preset-react-native-stage-0": "^1.0.1",
"file-loader": "^1.1.11",
"flow-bin": "^0.57.0",
"jest": "^23.2.0",
"jest-cli": "^21.2.1",
"jest-react-native": "^18.0.0",
"prettier": "1.8.2",
"react-hot-loader": "^4.3.3",
"react-test-renderer": "16.3.1",
"url-loader": "^1.0.1",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "webpack-dev-server -d --config ./web/webpack.config.js --inline --hot --colors",
"buildWeb": "webpack -p --config ./web/webpack.config.js",
"test": "jest",
"bundleAndroid": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"bundleIOS": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios",
"clean": "npm update && npm cache clean --force && rm -rf node_modules && yarn install"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"js-sha1": "^0.6.0",
"react": "^16.4.1",
"react-art": "^16.4.1",
"react-dom": "^16.4.1",
"react-native": "^0.55.4",
"react-native-web": "^0.4.0",
"react-native-web-webview": "^0.2.5",
"react-navigation": "^2.6.0",
"react-router-dom": "^4.3.1"
}
}