This repository was archived by the owner on Sep 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.43 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.43 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-native-ts",
"version": "0.1.5",
"private": true,
"devDependencies": {
"@types/enzyme": "3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/enzyme-to-json": "^1.5.2",
"@types/graphql": "^14.0.2",
"@types/jest": "23.3.5",
"@types/prettier": "^1.13.2",
"@types/react": "16.4.16",
"@types/react-dom": "^16.0.9",
"@types/react-native": "0.56.18",
"@types/react-native-i18n": "^2.0.0",
"@types/react-navigation": "2.0.24",
"@types/react-redux": "6.0.9",
"@types/react-test-renderer": "16.0.3",
"@types/recompose": "^0.27.0",
"@types/redux-actions": "^2.3.1",
"@types/redux-promise-middleware": "^0.0.11",
"@types/seamless-immutable": "^7.1.2",
"babel-preset-react-native": "4.0.1",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"enzyme-to-json": "3.3.4",
"husky": "1.1.2",
"jest-expo": "^30.0.0",
"lint-staged": "7.3.0",
"prettier": "1.14.3",
"react-dom": "16.3.1",
"react-native-scripts": "2.0.1",
"react-native-typescript-transformer": "1.2.10",
"react-test-renderer": "16.3.1",
"ts-jest": "23.10.4",
"tslib": "1.9.3",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.11.0",
"tslint-config-prettier": "^1.10.0",
"tslint-react": "^3.2.0",
"typescript": "3.1.3",
"validate-commit": "3.4.0"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"types": "./typings/index.d.ts",
"scripts": {
"commitmsg": "validate-commit-msg",
"server": "json-server --watch ./data.json",
"precommit": "lint-staged",
"prettier": "prettier --write 'src/**/*.{ts,tsx}'",
"setup": "make setup",
"start": "make start",
"typecheck": "tsc --project tsconfig.json --noEmit --skipLibCheck",
"lint": "tslint --project tsconfig.json --config tslint.json 'src/**/*.{ts,tsx}'",
"lint:fix": "yarn lint --fix",
"eject": "react-native-scripts eject",
"android": "make run-android",
"ios": "make run-ios",
"deploy": "make deploy-expo",
"build:android": "make build-android",
"build:ios": "make build-ios",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:wc": "yarn test:watch --coverage",
"test:ci": "yarn test:coverage --bail"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"yarn lint:fix",
"git add"
]
},
"dependencies": {
"@types/expo": "27.0.13",
"@types/ramda": "0.25.39",
"apollo-boost": "0.1.16",
"axios": "0.18.0",
"babel-plugin-dotenv-import": "2.0.0",
"expo": "^30.0.0",
"formik": "1.3.1",
"glamorous-native": "1.4.0",
"graphql": "14.0.2",
"insert-if": "1.1.0",
"key-mirror-nested": "1.3.0",
"match-values": "1.0.0",
"ramda": "^0.25.0",
"ramda-adjunct": "2.10.0",
"react": "16.3.1",
"react-apollo": "2.2.4",
"react-native": "https://github.com/expo/react-native/archive/sdk-30.0.0.tar.gz",
"react-native-hocs": "^0.0.4",
"react-native-i18n": "2.0.15",
"react-navigation": "2.18.0",
"react-redux": "^5.0.6",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.1",
"redux-persist": "5.10.0",
"redux-promise-middleware": "5.1.1",
"redux-thunk": "^2.3.0",
"reselect": "4.0.0",
"rnts-ui": "https://github.com/phanhoangloc/rnts-ui.git#v1.0.8",
"seamless-immutable": "7.1.4",
"type-to-reducer": "1.1.0"
}
}