forked from dai-shi/typescript-expo-apollo-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 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
{
"name": "typescript-expo-apollo-boilerplate",
"description": "Clean boilerplate for TypeScript + Expo (React Native) + React Apollo (GraphQL)",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "npm run eslint && npm run tsc-test && npm run jest",
"eslint": "eslint --ext .ts,.tsx .",
"tsc-test": "tsc --project . --noEmit",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/dai-shi/typescript-expo-apollo-boilerplate.git"
},
"author": "Daishi Kato",
"license": "MIT",
"dependencies": {
"apollo-cache-inmemory": "^1.5.0",
"apollo-client": "^2.5.0",
"apollo-link-schema": "^1.1.6",
"expo": "^32.0.6",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"react": "16.5.0",
"react-apollo": "^2.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-navigation": "^3.3.2"
},
"devDependencies": {
"@types/expo": "^32.0.3",
"@types/graphql": "^14.0.7",
"@types/jest": "^24.0.9",
"@types/react": "^16.8.5",
"@types/react-native": "^0.57.38",
"@types/react-navigation": "^3.0.4",
"@types/react-test-renderer": "^16.8.1",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"expo-cli": "^2.11.3",
"jest": "^24.1.0",
"jest-expo": "^32.0.0",
"react-dom": "^16.8.3",
"react-test-renderer": "^16.8.3",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"jest": {
"preset": "jest-expo",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js",
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"globals": {
"ts-jest": {
"tsConfig": {
"jsx": "react"
}
}
}
}
}