-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.76 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
75
{
"name": "TTNMobile",
"version": "1.28.0",
"private": true,
"lint-staged": {
"src/**/*.js": [
"prettier --no-semi --single-quote --trailing-comma --parser=flow --write",
"git add"
]
},
"scripts": {
"config:setup": "node ./src/scripts/config.js",
"lint": "eslint src",
"postinstall": "yarn translate",
"precommit": "lint-staged",
"setup": "yarn install && (cd ios && pod install) && yarn config:setup",
"start": "node node_modules/react-native/local-cli/cli.js start",
"start:haul": "haul start --platform all",
"test": "yarn lint && yarn flow && yarn jest",
"translate": "node_modules/babel-cli/bin/babel-node.js src/scripts/translations",
"version:bump": "node ./scripts/version-increment.js && git add . && node ./scripts/version-commit.js",
"version:tag": "node ./scripts/version-tag.js && git push origin --tags",
"version:push": "git push origin `git rev-parse --abbrev-ref HEAD`",
"deploy": "npm run version:bump && npm run version:tag && npm run version:push"
},
"dependencies": {
"base-64": "^0.1.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"query-string": "^4.3.2",
"react": "16.0.0-alpha.4",
"react-intl": "^2.2.3",
"react-native": "0.44.0",
"react-native-camera": "^0.9.4",
"react-native-code-push": "^2.0.2-beta",
"react-native-device-monitor": "^1.3.0",
"react-native-image-crop-picker": "^0.13.0",
"react-native-image-picker": "^0.26.3",
"react-native-keyboard-aware-scrollview": "git+ssh://[email protected]/async-la/react-native-keyboard-aware-scrollview#master",
"react-native-maps": "0.15.2",
"react-native-safari-view": "^2.0.0",
"react-native-sentry": "^0.6.0",
"react-native-svg": "git+ssh://[email protected]/react-native-community/react-native-svg#master",
"react-native-vector-icons": "^4.0.0",
"react-navigation": "git+ssh://[email protected]/react-community/react-navigation#master",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-logger": "^3.0.0",
"redux-persist": "^4.5.0",
"redux-persist-state-manager": "^0.1.1",
"redux-thunk": "^2.2.0",
"shitty-qs": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "19.0.0",
"babel-plugin-react-intl": "^2.3.1",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.18.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-react": "git+ssh://[email protected]/async-la/eslint-plugin-react#ttn-patch",
"flow-bin": "0.42",
"haul-cli": "^0.1.2",
"husky": "^0.13.3",
"jest": "^19.0.2",
"lint-staged": "^3.4.0",
"prettier": "^1.1.0",
"react-test-renderer": "~15.4.1"
},
"jest": {
"preset": "react-native"
}
}