-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.63 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
{
"name": "cam-proto",
"version": "0.1.0",
"private": true,
"description": "Mobile Collection Agent - technical POC",
"author": "Li Lin",
"license": "UNLICENSED",
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-react-native": "^1.6.0",
"eslint-config-react-native-prettier": "^1.0.1",
"husky": "^0.14.3",
"jest-expo": "~22.0.0",
"lint-staged": "^4.0.2",
"prettier": "^1.7.0",
"react-native-debugger-open": "^0.3.15",
"react-native-scripts": "^1.7.0",
"react-test-renderer": "16.0.0-beta.5"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"postinstall": "rndebugger-open",
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js --watch",
"cover": "node node_modules/jest/bin/jest.js --watchAll --coverage",
"precommit": "lint-staged"
},
"jest": {
"preset": "jest-expo"
},
"lint-staged": {
"**/*.{js,jsx,json,scss}": ["prettier --single-quote --write", "git add"]
},
"dependencies": {
"expo": "^22.0.0",
"react": "16.0.0-beta.5",
"react-native":
"https://github.com/expo/react-native/archive/sdk-22.0.2.tar.gz",
"react-native-communications": "^2.2.1",
"react-native-elements": "^0.18.0",
"react-native-settings-list": "^1.8.0",
"react-navigation": "^1.0.0-beta.17",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-persist": "^4.9.1",
"redux-thunk": "^2.2.0"
}
}