-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.53 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
{
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"watch": "bsb -make-world -clean-world -w",
"test": "jest",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^24.9.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-expo": "^7.0.0",
"bs-platform": "^5.0.6",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"husky": "^2.4.1",
"jest-expo": "^35.0.0",
"lint-staged": "^8.2.1",
"prettier": "^1.13.5",
"react-native-testing-library": "^1.11.1",
"react-test-renderer": "^16.12.0"
},
"dependencies": {
"expo": "^35.0.0",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-web": "^0.11.7",
"reason-react": "^0.7.0",
"reason-react-native": "^0.60.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}