-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.67 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.67 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
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
{
"name": "most",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "react-native start",
"restart": "react-native start --reset-cache",
"killport": "sudo kill $(sudo lsof -t -i:8081)",
"link": "react-native link",
"android": "react-native run-android",
"android:fix": "react-native run-android stacktrace",
"ios": "react-native run-ios",
"ios:X": "react-native run-ios --simulator \"iPhone X\"",
"test": "jest",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"clean:ios": "rm -rf ./ios/build/",
"clean:android": "rm -rf ./android/build/ ./android/app/build/",
"clean": "npm run clean:ios && npm run clean:android",
"bundle:android": "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/",
"prebuild:android": "npm run bundle:android && rm -rf android/app/src/main/res/drawable-*",
"build:android": "npm run prebuild:android && cd android && ./gradlew assembleRelease",
"bundle:ios": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios"
},
"dependencies": {
"axios": "^0.18.0",
"jsrsasign": "^8.0.12",
"moment": "^2.23.0",
"native-base": "^2.7.2",
"react": "16.4.1",
"react-native": "0.56.0",
"react-native-camera": "^1.3.0",
"react-native-chart-kit": "^1.2.0",
"react-native-charts-wrapper": "^0.5.0",
"react-native-communications": "^2.2.1",
"react-native-elements": "^0.19.1",
"react-native-qrcode": "^0.2.7",
"react-native-qrcode-scanner": "^1.1.0",
"react-native-svg": "^8.0.8",
"react-native-svg-charts": "^5.2.0",
"react-native-table-component": "^1.1.8",
"react-navigation": "^2.11.2",
"url-join": "^4.0.0",
"victory-native": "^31.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-jest": "23.4.2",
"babel-preset-react-native": "^5",
"eslint": "^5.2.0",
"eslint-plugin-eslint-comments": "^3.0.1",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-native": "^3.2.1",
"jest": "23.5.0",
"prettier": "^1.13.7",
"react-test-renderer": "16.4.1"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"jest": {
"preset": "react-native"
},
"prettier": {
"requirePragma": true,
"parser": "flow",
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"printWidth": 180
}
}