-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.41 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
{
"name": "explorar",
"version": "1.0.0",
"description": "Proof-of-concept gather quest AR app made with React Native.",
"main": "index.html",
"private": true,
"scripts": {
"start": "cross-env REACT_DEBUGGER=\"echo noop\" react-native start --config rn-cli.config.js",
"push": "cross-env ENVFILE=.env.local react-native run-android --no-packager",
"dev": "react-native run-android",
"test": "jest",
"lint": "tslint \"src/**/*.{js,jsx,ts,tsx}\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@types/geodesy": "^1.2.2",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-native": "^0.60.2",
"@types/react-native-vector-icons": "^6.4.1",
"@types/react-redux": "^7.1.1",
"@types/react-test-renderer": "^16.8.2",
"@types/redux-logger": "^3.0.7",
"@types/ungap__url-search-params": "^0.1.0",
"babel-jest": "^24.8.0",
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "^2.2.1",
"tslint-react-native": "0.0.7",
"typescript": "^3.5.3"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.1",
"@ungap/url-search-params": "^0.1.2",
"color": "^3.1.2",
"geodesy": "^2.2.0",
"react": "^16.8.6",
"react-native": "^0.60.4",
"react-native-camera": "^3.2.1",
"react-native-config": "^0.11.7",
"react-native-gesture-handler": "^1.3.0",
"react-native-maps": "^0.25.0",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^3.11.1",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-saga": "^1.0.5"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}