This repository has been archived by the owner on Aug 3, 2020. It is now read-only.
forked from PCaponetti/ReactNativeTS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "react-native-ts-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start --skipflow",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"prebuild": "node node_modules/.bin/rimraf build",
"build": "tsc",
"pretest": "npm run build",
"test": "jest"
},
"dependencies": {
"@types/lodash": "^4.14.70",
"@types/react-redux": "^4.4.46",
"@types/redux": "^3.6.0",
"@types/redux-actions": "^1.2.6",
"@types/redux-thunk": "^2.1.0",
"lodash": "^4.17.4",
"react": "16.0.0-alpha.6",
"react-native": "0.44.0",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^19.2.3",
"@types/react": "^15.0.24",
"@types/react-native": "^0.43.11",
"@types/react-navigation": "^1.0.12",
"@types/react-test-renderer": "^15.5.0",
"babel-jest": "^19.0.0",
"babel-preset-react-native": "^1.9.1",
"jest": "19.0.2",
"react-test-renderer": "16.0.0-alpha.6",
"rimraf": "^2.6.1",
"ts-jest": "^19.0.14",
"typescript": "^2.3.2"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}