-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.78 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
{
"name": "ParkingLotTrackerMobileApp",
"version": "0.6.0",
"private": true,
"scripts": {
"watch": "npm run build -- -w",
"fixGradle": "(cd android/ && ./gradlew assembleDebug)",
"start": "node node_modules/react-native/local-cli/cli.js start",
"bundle-android": "react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --sourcemap-output android/app/src/main/assets/index.android.map --assets-dest android/app/src/main/res/",
"test": "npm run build-test && jest --coverage",
"start:a": "npm run build && concurrently -r 'npm run watch' 'react-native run-android'",
"start:ios": "npm run build && concurrently -r 'npm run watch' 'react-native run-ios'",
"tsc": "tsc",
"clean": "rimraf artifacts",
"clean-test": "rimraf artifacts && rimraf coverage",
"build": "npm run clean && tsc -p tsconfig.json",
"build-test": "npm run clean-test && tsc -p tsconfig.test.json",
"lint": "tslint src/**/*.ts"
},
"dependencies": {
"react": "15.4.2",
"react-native": "0.42.3",
"react-native-maps": "0.14.0",
"react-navigation": "^1.0.0-beta.7"
},
"devDependencies": {
"@types/jest": "19.2.2",
"@types/react": "15.0.21",
"@types/react-native": "0.43.1",
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"concurrently": "3.4.0",
"jest": "19.0.2",
"react-test-renderer": "15.4.2",
"rimraf": "2.6.1",
"tslint": "5.0.0",
"typescript": "2.2.2"
},
"jest": {
"preset": "react-native",
"testRegex": "artifacts/__tests__/*.*.js$",
"coverageDirectory": "coverage",
"coverageReporters": [
"text-summary",
"html"
],
"collectCoverageFrom": [
"artifacts/src/**/*.js"
]
}
}