-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "FanDuelGame",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"@types/enzyme": "^3.1.18",
"@types/enzyme-adapter-react-16": "^1.0.4",
"@types/styled-components": "^4.1.10",
"axios": "^0.18.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.0.0",
"enzyme-to-json": "^3.0.1",
"global": "^4.3.2",
"jsdom-global": "^3.0.2",
"react": "16.6.3",
"react-native": "0.58.4",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^24.0.4",
"@types/react": "^16.8.3",
"@types/react-native": "^0.57.36",
"@types/react-test-renderer": "^16.8.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "24.1.0",
"jest": "24.1.0",
"metro-react-native-babel-preset": "0.51.1",
"react-dom": "^16.8.2",
"react-native-typescript-transformer": "^1.2.11",
"react-test-renderer": "16.6.3",
"ts-jest": "^23.10.5",
"typescript": "^3.3.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"setupTestFrameworkScriptFile": "<rootDir>/setupTests.tsx",
"testEnvironment": "jsdom",
"cacheDirectory": ".jest/cache",
"modulePaths": [
"<rootDir>"
]
}
}