forked from AmitM30/react-native-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.91 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
{
"name": "friday-app",
"description": "React Native Boilerplate, TypeScript with React Native Navigation",
"keywords": [
"react native",
"typescript",
"boilerplate",
"react native navigation"
],
"version": "0.1.0",
"author": {
"name": "Amit Mangal",
"email": "[email protected]",
"url": "https://github.com/AmitM30"
},
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/AmitM30/react-native-typescript-boilerplate"
},
"bugs": {
"url": "https://github.com/AmitM30/react-native-typescript-boilerplate/issues",
"email": "[email protected]"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android": "react-native run-android --variant=Debug",
"lint": "tslint --project ./tsconfig.json",
"lint:fix": "tslint --fix --project ./tsconfig.json"
},
"dependencies": {
"react": "16.6.3",
"react-native": "0.57.8",
"react-native-navigation": "^2.8.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@types/jest": "^23.3.13",
"@types/react": "^16.7.21",
"@types/react-native": "^0.57.32",
"@types/react-redux": "^7.0.1",
"@types/react-test-renderer": "^16.0.3",
"@types/redux-logger": "^3.0.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "24.0.0",
"babel-preset-airbnb": "^3.2.0",
"babel-preset-react-native": "^4.0.1",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.2",
"eslint-watch": "^4.0.2",
"jest": "24.0.0",
"metro-react-native-babel-preset": "^0.51.1",
"react-addons-test-utils": "^15.6.2",
"react-native-typescript-transformer": "^1.2.11",
"react-test-renderer": "16.6.3",
"regenerator-runtime": "^0.13.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.4"
},
"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/"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!ios/**",
"!android/**"
],
"cacheDirectory": ".jest/cache"
},
"engines": {
"node": ">=8.11.0 <=9",
"npm": ">=6.0.0",
"yarn": ">=1.9.2"
}
}