-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "WineGlass",
"version": "0.1.0",
"private": true,
"main": "./node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"eject": "expo eject",
"android": "expo start --android",
"ios": "expo start --ios",
"lint": "eslint .",
"test": "jest"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"easing-js": "^1.1.2",
"expo": "^37.0.0",
"expo-asset": "~8.1.3",
"react": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.0.tar.gz"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^4.19.1",
"eslint-config-airbnb": "17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "0.75.0",
"jest-expo": "^37.0.0",
"prettier": "^1.13.7",
"react-test-renderer": "16.9.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}