-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.51 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.51 KB
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
{
"name": "com.forum",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "cp -R src/Images build/Images && tsc --watch",
"apollo": "apollo",
"start": "node node_modules/react-native/local-cli/cli.js start",
"generate-types": "./node_modules/.bin/gql-gen --schema=http://localhost:4000 --template graphql-codegen-typescript-template --out=./src/GraphQL/",
"tslint": "./node_modules/.bin/tslint --project ./tsconfig.json",
"tslint-formatted": "./node_modules/.bin/tslint -s node_modules/custom-tslint-formatters/formatters -t grouped 'src/**/*.ts{,x}'",
"autofix": "./node_modules/.bin/tslint --project ./tsconfig.json --fix",
"test": "jest"
},
"dependencies": {
"@absinthe/socket-apollo-link": "^0.2.1",
"@babel/runtime": "^7.1.2",
"@jumpn/utils-graphql": "^0.5.3",
"@types/graphql": "^14.0.2",
"@types/lodash.get": "^4.4.4",
"@types/react-navigation": "^2.0.24",
"apollo": "^1.9.2",
"apollo-cache-inmemory": "^1.2.10",
"apollo-client": "^2.4.2",
"apollo-codegen": "^0.20.2",
"apollo-link": "^1.2.3",
"apollo-link-error": "^1.1.1",
"apollo-link-http": "^1.5.5",
"apollo-link-state": "^0.4.2",
"apollo-link-ws": "^1.0.9",
"graphql": "^14.0.2",
"graphql-code-generator": "^0.12.6",
"graphql-tag": "^2.10.0",
"lodash": "^4.17.11",
"lodash.get": "^4.4.2",
"phoenix": "^1.4.10",
"react": "16.8.3",
"react-apollo": "^2.2.4",
"react-native": "0.59.9",
"react-native-config": "^0.11.5",
"react-native-elements": "^0.19.1",
"react-native-gesture-handler": "^1.5.0",
"react-native-reanimated": "^1.4.0",
"react-native-simple-markdown": "^1.1.0",
"react-native-tab-view": "^2.10.2",
"react-native-vector-icons": "^6.0.2",
"react-navigation": "^2.17.0",
"subscriptions-transport-ws": "^0.9.15"
},
"devDependencies": {
"@types/jest": "^23.3.3",
"@types/react": "^16.4.14",
"@types/react-native": "^0.57.1",
"@types/react-test-renderer": "^16.0.3",
"babel-jest": "^23.6.0",
"custom-tslint-formatters": "^2.4.0",
"graphql-codegen-typescript-template": "^0.12.6",
"jest": "^23.6.0",
"metro-react-native-babel-preset": "0.47.0",
"react-addons-test-utils": "^15.6.2",
"react-native-typescript-transformer": "^1.2.10",
"react-test-renderer": "16.5.0",
"reactotron-prettier-log": "^0.2.0",
"reactotron-react-native": "^2.1.0",
"ts-jest": "^23.10.3",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.1"
}
}