-
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.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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": "universal",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "yarn start:web",
"start:web": "NODE_ENV=development webpack-serve --config web/config/webpack",
"start:ios": "react-native run-ios",
"start:android": "react-native run-android",
"test": "jest"
},
"dependencies": {
"react": "^16.3.0-alpha.1",
"react-dom": "^16.2.0",
"react-native": "0.54.2",
"react-native-web": "^0.5.3"
},
"devDependencies": {
"@types/react": "^16.0.41",
"@types/react-native": "^0.52.19",
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"html-webpack-plugin": "^3.1.0",
"jest": "22.4.3",
"react-native-typescript-transformer": "^1.2.3",
"react-test-renderer": "^16.3.0-alpha.1",
"ts-loader": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^3.0.2",
"typescript": "^2.7.2",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-merge": "^4.1.2",
"webpack-serve": "^0.2.0"
},
"jest": {
"preset": "react-native"
}
}