-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "my-new-project",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"rnpm": {
"assets": [
"./assets/fonts/"
]
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node ./node_modules/jest/bin/jest.js --watchAll",
"react-devtools": "react-devtools"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/samples": "2.1.1",
"axios": "^0.18.1",
"electron": "^4.0.2",
"expo": "^31.0.2",
"global": "^4.3.2",
"react": "16.5.0",
"react-devtools": "^3.6.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz",
"react-native-elements": "^0.19.1",
"react-native-gesture-handler": "^1.0.12",
"react-native-htmlview": "^0.13.0",
"react-native-star-rating": "^1.1.0",
"react-native-swiper": "^1.5.14",
"react-native-vector-icons": "^6.2.0",
"react-navigation": "^2.18.2",
"react-test-renderer": "^16.7.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-expo": "^5.0.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.3.1",
"jest-expo": "^31.0.0",
"lint-staged": "^8.1.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue}": [
"pretty-quick --staged",
"eslint . --fix --quiet --ignore-path .gitignore",
"git add"
]
}
}