-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "eatery-nod",
"version": "0.1.0",
"description": "A Date Night Random Restaurant Selector (my first react-native mobile app)",
"author": "Kevin J. Bridges <kevinast@gmail.com> (https://github.com/KevinAst)",
"private": true,
"main": "src/app.js",
"repository": {
"type": "git",
"url": "https://github.com/KevinAst/eatery-nod.git"
},
"keywords": [
"react-native",
"mobile-app",
"astx"
],
"license": "MIT",
"homepage": "https://github.com/KevinAst/eatery-nod",
"scripts": {
"start": "npm run test:watch",
"lint": "echo '*** Verify code quality (lint):' && eslint src",
"test": "jest",
"test:watch": "npm run test -- --watch",
"sandbox:firebaseDoodle": "babel-node sandbox/firebase/firebaseDoodle.js",
"sandbox:GooglePlacesDiscoveryAPI": "babel-node sandbox/GooglePlaces/DiscoveryAPI.js"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^8.1.0",
"action-u": "^0.2.0",
"astx-redux-util": "^1.0.0",
"expo": "^30.0.0",
"feature-redux": "^1.0.0",
"feature-redux-logic": "^1.0.0",
"feature-router": "^1.0.0",
"feature-u": "^1.0.0",
"firebase": "^4.5.0",
"geodist": "^0.2.1",
"lodash.isequal": "^4.5.0",
"lodash.isfunction": "^3.0.8",
"lodash.isstring": "^4.0.1",
"native-base": "^2.3.5",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-30.0.0.tar.gz",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logic": "^0.12.3",
"reselect": "^3.0.1",
"yup": "^0.22.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"eslint": "^4.6.1",
"eslint-config-expo": "^6.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.3.0",
"jest-expo": "^30.0.0",
"prettier": "^1.9.2"
}
}