-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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
{
"name": "react-native-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"expo": "^25.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-native": "0.52.0",
"react-native-web": "^0.5.1",
"react-scripts": "1.1.1"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"scripts": {
"web:start": "react-scripts start",
"web:build": "react-scripts build",
"web:test": "react-scripts test --env=jsdom",
"web:eject": "react-scripts eject",
"native:start": "react-native-scripts start",
"native:eject": "react-native-scripts eject",
"native:android": "react-native-scripts android",
"native:ios": "react-native-scripts ios",
"native:test": "node node_modules/jest/bin/jest.js --watch",
"test": "npm run web:test && npm run native:test"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-preset-expo": "^4.0.0",
"flow-bin": "^0.66.0",
"jest-expo": "^25.1.0",
"react-native-scripts": "^1.11.1",
"react-test-renderer": "16.2.0"
},
"jest": {
"preset": "jest-expo"
}
}