This repository was archived by the owner on Jan 20, 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
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"lint": "tslint --project tsconfig.json",
"eject": "expo eject",
"build": "tsc",
"test": "node ./node_modules/jest/bin/jest.js --watchAll",
"test:coverage": "node ./node_modules/jest/bin/jest.js -i --coverage",
"reinstall": "rm -rf node_modules && yarn",
"clean": "rm -rf dist build coverage"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/samples": "2.1.1",
"expo": "^32.0.0",
"prop-types": "^15.7.2",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-navigation": "^3.0.9",
"react-navigation-redux-helpers": "^3.0.2",
"react-redux": "6.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@types/expo": "^32.0.13",
"@types/jest": "^24.0.13",
"@types/react-native": "^0.57.60",
"@types/react-navigation": "^3.0.7",
"@types/react-redux": "^7.0.9",
"@types/react-test-renderer": "^16.8.1",
"babel-preset-expo": "^5.0.0",
"jest-expo": "^32.0.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-react": "^4.0.0",
"typescript": "^3.3.0"
},
"private": true
}