-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "BeaconDeploymentTool",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/CMP-Studio/BeaconDeploymentTool.git",
"author": "Ruben NIculcea <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"precommit": "lint-staged",
"format": "prettier-eslint --write \"src/**/*.js\""
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"dependencies": {
"fbjs": "^0.8.12",
"immutable": "^3.8.1",
"react": "15.4.2",
"react-native": "0.42.3",
"react-native-fs": "^2.3.2",
"react-native-immutable-list-view": "^0.4.3",
"react-native-keyboard-aware-scroll-view": "^0.2.8",
"react-navigation": "git+https://github.com/react-community/react-navigation.git#77313a2",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^7.2.0",
"babel-jest": "19.0.0",
"babel-plugin-flow-react-proptypes": "^1.2.0",
"babel-preset-react-native": "1.9.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.38.0",
"husky": "^0.13.2",
"jest": "19.0.2",
"lint-staged": "^3.4.0",
"prettier-eslint-cli": "^3.4.2",
"react-test-renderer": "15.4.2"
},
"jest": {
"preset": "react-native"
}
}