-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "AwesomeProject",
"version": "0.0.1",
"private": true,
"scripts": {
"preinstall": "node ./scripts/link_folders.js",
"postinstall": "node ./scripts/link_folders.js",
"start": "node node_modules/react-native/local-cli/cli.js start",
"backend": "cd backend && yarn watch",
"backend:android": "adb reverse tcp:3001 tcp:3001",
"backend:deploy": "git subtree push --prefix backend heroku master",
"backend:logs": "heroku logs -t",
"test": "jest"
},
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/native": "^10.0.14",
"@react-native-community/async-storage": "^1.5.0",
"apisauce": "^1.0.3",
"html-entities": "^1.2.1",
"jwt-decode": "^2.2.0",
"luxon": "^1.16.0",
"ramda": "^0.26.1",
"ramdasauce": "^2.1.3",
"react": "16.8.3",
"react-native": "0.59.9",
"react-native-alert-async": "^1.0.3",
"react-native-gesture-handler": "^1.3.0",
"react-native-reanimated": "^1.1.0",
"react-navigation": "^3.11.0",
"react-navigation-animated-switch": "^0.2.1",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.3",
"reduxsauce": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^5.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"flow-bin": "^0.101.1",
"get-dev-paths": "^0.1.1",
"jest": "^24.8.0",
"json-server": "^0.15.0",
"metro-react-native-babel-preset": "^0.54.1",
"prettier": "^1.18.2",
"react-test-renderer": "16.8.3"
},
"jest": {
"preset": "react-native"
}
}