-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.68 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
{
"name": "my-new-project",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start-web": "webpack-dev-server --config ./webpack.config.js --mode development",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node ./node_modules/jest/bin/jest.js --config jest.config.js --no-cache --watchAll"
},
"dependencies": {
"@expo/samples": "2.1.1",
"css-loader": "^1.0.1",
"expo": "^31.0.2",
"prop-types": "^15.6.2",
"react": "16.5.1",
"react-art": "^16.6.1",
"react-dom": "^16.6.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-31.0.0.tar.gz",
"react-native-web": "0.9.6",
"react-navigation": "^2.18.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2"
},
"//dependencies": {
"1": "react needs to be 16.5.1 (https://github.com/necolas/react-native-web/issues/1096)",
"2": " but any higher will cause issues with react-native",
"3": "react-art is required by react-native-web",
"4": "react-native is at 0.57.1 and comes from expo",
"5": "react-native-web's react-native version needs to match"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-loader": "^8.0.4",
"babel-plugin-react-native-web": "^0.9.6",
"babel-preset-expo": "^5.0.0",
"jest-expo": "^31.0.0",
"metro-react-native-babel-preset": "^0.49.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"//devDependencies": {
"1": "expo 31 requires @babel/core 7, if other modules load babel 6, errors abound",
"2": "don't think react-hot-loader is required"
}
}