-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.36 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
{
"name": "reservations",
"version": "0.0.1",
"author": "Rudolph Schmitz",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --watch"
},
"dependencies": {
"apollo-boost": "^0.3.1",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link-http": "^1.5.11",
"eslint-plugin-jest": "^22.3.0",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"moment": "^2.24.0",
"react": "^16.8.3",
"react-apollo": "^2.5.1",
"react-native": "0.58.6",
"react-navigation": "^3.3.2",
"react-test-renderer": "^16.8.3",
"remove": "^0.1.5",
"tslint": "^5.13.1",
"tslint-microsoft-contrib": "^6.0.0",
"tslint-react": "^3.6.0",
"tslint-react-a11y": "^1.0.0",
"waait": "^1.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/graphql": "^14.0.7",
"@types/jest": "^24.0.9",
"@types/react": "^16.8.6",
"@types/react-native": "^0.57.38",
"@types/react-navigation": "^3.0.4",
"@types/react-test-renderer": "^16.8.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"jest": "^24.1.0",
"jest-environment-enzyme": "^7.0.1",
"jest-fetch-mock": "^2.1.1",
"metro-react-native-babel-preset": "0.53.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.8.3",
"react-native-typescript-transformer": "^1.2.11",
"ts-jest": "^24.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.3.3333"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.jest.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"<rootDir>"
],
"setupFiles": [
"./tests/setup.js"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
}
}