-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"precommit": "lint-staged && npm test",
"test": "jest",
"appr": "appr",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"eslint": "eslint –config ./src/ --ignore-pattern '!.eslintrc.js'",
"prettier": "prettier --single-quote --write '**/**/*.js'",
"encrypt": "encrypt config.json secret/config.json.secret",
"decrypt": "decrypt secret/config.json.secret config.json"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"npm run eslint",
"git add"
]
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/spawn-async": "^1.3.0",
"config-leaf": "^0.3.0",
"expo": "^27.0.1",
"firebase": "^5.3.1",
"mkdirp": "^0.5.1",
"moment": "^2.22.1",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-27.0.0.tar.gz",
"react-native-elements": "^1.0.0-beta5",
"react-native-popup-dialog": "^0.11.46",
"react-native-swipeable": "^0.6.0",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^2.12.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.2",
"@sentry/cli": "^1.34.0",
"sentry-expo": "^1.7.0"
},
"devDependencies": {
"appr": "^2.0.0",
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"exp": "^53.1.0",
"husky": "^0.14.3",
"jest-expo": "^27.0.1",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
}
}