-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "listaai",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "concurrently -r 'tsc -w' 'node node_modules/react-native/local-cli/cli.js start'",
"test": "jest",
"lint": "tslint 'src/**/*.{ts,tsx}'"
},
"dependencies": {
"react": "16.6.1",
"react-native": "0.57.7",
"react-native-gesture-handler": "^1.0.10",
"react-native-maps": "^0.22.1",
"react-native-paper": "^2.2.8",
"react-native-vector-icons": "^6.1.0",
"react-navigation": "^3.0.2",
"react-navigation-material-bottom-tabs": "^1.0.0",
"ts-jest": "^23.10.5"
},
"devDependencies": {
"@types/react": "^16.7.7",
"@types/react-native": "^0.57.14",
"@types/react-native-vector-icons": "^4.6.4",
"@types/react-navigation": "^2.13.5",
"@types/react-navigation-material-bottom-tabs": "^0.3.0",
"babel-jest": "23.6.0",
"concurrently": "^4.1.0",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.49.2",
"prettier": "^1.15.2",
"react-native-typescript-transformer": "^1.2.10",
"react-test-renderer": "16.6.1",
"tslint": "^4.5.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^3.6.0",
"typescript": "^3.1.6"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest",
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"cacheDirectory": ".jest/cache"
}
}