-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "react-native-expo-typescript-jest",
"version": "0.1.0",
"private": true,
"devDependencies": {
"jest-expo": "~20.0.0",
"jest-expo-ts": "~20.0.0",
"react-native-scripts": "1.2.1",
"react-native-typescript-transformer": "^1.1.3",
"react-test-renderer": "16.0.0-alpha.12",
"rimraf": "^2.6.1",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"start": "yarn clean-build-test && react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"build": "./node_modules/typescript/bin/tsc",
"lint": "./node_modules/tslint/bin/tslint src/**/*.ts",
"clean": "rimraf build coverage",
"build-watch": "./node_modules/typescript/bin/tsc --watch",
"test": "node node_modules/jest/bin/jest.js --coverage",
"test-watch": "node node_modules/jest/bin/jest.js --watchAll",
"build-test": "yarn build && yarn test",
"clean-build-test": "yarn run clean && yarn build && yarn test"
},
"jest": {
"preset": "jest-expo-ts",
"mapCoverage": true,
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/build/"
]
},
"dependencies": {
"@types/jest": "^20.0.8",
"@types/react": "^16.0.4",
"@types/react-native": "^0.47.6",
"@types/react-test-renderer": "^15.5.4",
"expo": "^20.0.0",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.12",
"react-native": "^0.47.0"
}
}