forked from totorototo/strava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 2.3 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
66
67
68
69
70
71
72
73
74
{
"name": "lybitos",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "node node_modules/react-native/local-cli/cli.js run-android",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"http": "adb reverse tcp:8081 tcp:8081 && adb reverse tcp:8081 tcp:8081 && adb reverse tcp:8097 tcp:8097",
"remotedev": "remotedev --hostname=localhost --port=8000",
"test": "jest",
"lint": "eslint --quiet app",
"devtools": "react-devtools",
"precommit": "lint-staged",
"postcommit": "git reset",
"prepush": "yarn lint",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"prepublish": "npm run lint && npm test",
"postpublish": "git push origin master --follow-tags"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"es6-symbol": "^3.1.1",
"firebase": "^4.2.0",
"hoist-non-react-statics": "^2.2.2",
"lodash": "^4.17.4",
"normalizr": "^3.2.3",
"prop-types": "^15.5.10",
"react": "16.0.0-alpha.12",
"react-devtools": "^2.5.0",
"react-native": "0.48.1",
"react-native-config": "^0.6.0",
"react-native-elements": "^0.15.0",
"react-native-maps": "^0.16.0",
"react-native-progress": "^3.2.1",
"react-native-vector-icons": "^4.2.0",
"react-navigation": "^1.0.0-beta.11",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"redux-saga": "^0.15.5",
"reloaddux": "^0.0.9",
"remote-redux-devtools": "^0.5.12",
"util": "^0.10.3"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "18.0.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-prettier": "^2.0.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-react-native": "^2.2.1",
"husky": "^0.13.3",
"jest": "18.1.0",
"lint-staged": "^3.4.0",
"prettier": "^1.5.2",
"react-test-renderer": "~15.4.0-rc.4",
"remotedev-server": "^0.3.0-beta-3"
},
"jest": {
"preset": "react-native"
}
}