-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.28 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
84
85
86
87
88
89
90
91
92
93
{
"name": "yolo-react-native-offline",
"version": "0.2.2",
"private": true,
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react-native": "^4.0.0",
"babel-preset-stage-2": "^6.24.1",
"chunk-manifest-webpack-plugin": "1.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-native": "^3.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^1.1.5",
"hard-source-webpack-plugin": "^0.4.11",
"html-webpack-plugin": "^2.26.0",
"image-webpack-loader": "^3.4.2",
"jest": "^21.2.1",
"pre-commit": "^1.2.2",
"react-scripts": "^1.0.14",
"react-test-renderer": "16.0.0-alpha.12",
"url-loader": "^0.6.2",
"webpack": "^2.2.1",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-dev-server": "^2.9.4",
"webpack-manifest-plugin": "^1.1.0",
"webpack-md5-hash": "0.0.5"
},
"scripts": {
"start": "react-native start",
"link": "react-native link",
"android": "react-native run-android",
"android:fresh": "npm run android:bundle-dev && react-native run-android -- --reset-cache",
"android:bundle-dev": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"ios": "react-native run-ios",
"wds": "webpack-dev-server --config ./web/webpack.config.js",
"jest": "jest",
"eslint": "eslint --fix ./screens/**/*.js ./web/index.js",
"test": "npm run jest && npm run eslint",
"clean": "node ./web/build-scripts/DeleteOldFiles.js",
"build": "npm run build:web",
"build:web": "npm run clean && NODE_ENV=production webpack --config ./web/webpack.config.js && git add -A",
"build:native": "cd android && ./gradlew assembleRelease",
"analyze": "webpack --config ./web/webpack.config.js --json | webpack-bundle-size-analyzer"
},
"dependencies": {
"@redux-offline/redux-offline": "^2.2.0",
"axios": "^0.17.0",
"babel-polyfill": "^6.26.0",
"chart.js": "^2.7.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.7",
"date-fns": "^1.29.0",
"dotenv": "^4.0.0",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"prop-types": "^15.6.0",
"react": "^16.0.0-alpha.12",
"react-dom": "^16.0.0",
"react-modal": "^3.1.4",
"react-native": "^0.48.4",
"react-native-device-info": "^0.12.1",
"react-native-elements": "^0.17.0",
"react-native-modal": "^4.1.1",
"react-native-svg": "^5.4.2",
"react-native-vector-icons": "^4.4.2",
"react-native-web": "^0.1.14",
"react-navigation": "^1.0.0-beta.19",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^4.5.0",
"style-loader": "^0.19.0",
"victory-native": "^0.15.0"
},
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js)$",
"moduleFileExtensions": [
"js"
]
},
"pre-commit": ["test"]
}