This repository has been archived by the owner on Dec 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
105 lines (105 loc) · 3.43 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "CampusGuide",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "yarn run clean && yarn run tsc",
"build:ios": "react-native bundle --entry-file='artifacts/index.ios.js' --bundle-output='./release/main.jsbundle' --dev=false --platform='ios' --assets-dest='./release'",
"clean": "rimraf artifacts && rimraf artifacts-test",
"gulp-build": "yarn run gulp-clean && gulp",
"gulp-clean": "rimraf artifacts-test",
"lint": "tslint 'src/**/*.ts?(x)'",
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:build": "yarn run build -w",
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"test": "yarn run gulp-build && jest --coverage",
"tsc": "tsc",
"tscp": "tsc --pretty"
},
"dependencies": {
"fastpriorityqueue": "^0.3.1",
"http-status-codes": "^1.3.0",
"moment": "^2.20.1",
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-native": "^0.51.0",
"react-native-action-button": "^2.8.3",
"react-native-deprecated-custom-components": "facebookarchive/react-native-custom-components",
"react-native-device-info": "^0.13.0",
"react-native-fabric": "^0.5.1",
"react-native-fs": "^2.9.6",
"react-native-geolocation-service": "^1.0.0",
"react-native-maps": "^0.19.0",
"react-native-scrollable-tab-view": "^0.8.0",
"react-native-simple-store": "^1.3.0",
"react-native-snackbar": "^0.4.4",
"react-native-vector-icons": "^4.4.3",
"react-native-zip-archive": "^2.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^22.0.0",
"@types/react": "^16.0.31",
"@types/react-native": "^0.51.7",
"@types/react-native-fabric": "^0.5.0",
"@types/react-native-fs": "^2.8.0",
"@types/react-redux": "^5.0.14",
"babel-jest": "23.4.2",
"babel-preset-react-native": "^4.0.0",
"concurrently": "^3.5.1",
"empty": "^0.10.1",
"gulp": "^3.9.1",
"gulp-typescript": "^5.0.0-alpha.2",
"jest": "^22.0.4",
"jest-cli": "^22.0.4",
"jest-react-native": "^18.0.0",
"pre-commit": "^1.2.2",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"ts-jest": "^22.0.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.6.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"artifacts-test/util/*.js",
"artifacts-test/util/graph/*.js",
"artifacts-test/actions/*.js",
"artifacts-test/reducers/*.js",
"!artifacts-test/**/*.spec.js",
"!artifacts-test/**/*.index.js",
"!artifacts-test/actions/index.js",
"!artifacts-test/util/Configuration.js",
"!artifacts-test/util/graph/Directions.js",
"!artifacts-test/util/graph/DirectionTranslations.js",
"!artifacts-test/util/graph/Navigation.js"
],
"coverageDirectory": "coverage",
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"mapCoverage": true,
"moduleNameMapper": {
"^[./]*assets[a-zA-Z0-9./]*/([a-zA-Z.]+)$": "empty/object"
},
"preset": "react-native",
"testRegex": "artifacts-test/.+[-.](test|spec).js$",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"pre-commit": [
"lint"
]
}