-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
{
"name": "empty-project-template",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "expo start --android",
"precommit": "yarn flow status && yarn test",
"eject": "expo eject",
"expobook": "./node_modules/.bin/expobook",
"flow": "flow",
"format": "sort-package-json; import-sort --write '*.js'; prettier --write '*.js'; eslint --fix --ignore-pattern '!.eslintrc.js' '*.js';",
"ios": "expo start --ios",
"start": "expo start",
"test": "node_modules/.bin/jest"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"expo": "^29.0.0",
"expobook": "^0.0.4",
"react": "16.3.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-29.0.0.tar.gz"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-runtime": "^6.26.0",
"eslint": "^5.4.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.2.1",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.79.1",
"husky": "^0.14.3",
"import-sort-cli": "^5.2.0",
"import-sort-parser-babylon": "^5.2.0",
"import-sort-style-module": "^5.0.0",
"jest": "^23.5.0",
"jest-expo": "^29.0.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"react-dom": "16.3.1",
"react-test-renderer": "^16.4.2",
"sort-package-json": "^1.15.0"
},
"importSort": {
".js, .es": {
"parser": "babylon",
"style": "module"
}
},
"lint-staged": {
"*.js": [
"import-sort --write",
"prettier --write",
"eslint --fix --ignore-pattern '!.eslintrc.js'",
"git add"
]
}
}