-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "RNWebDemo",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"web": "npm-run-all --parallel open:src",
"open:src": "babel-node server.js",
"clean": "rimraf dist",
"build:webpack": "webpack --config webpack-pro-config.js --progress --colors",
"build": "npm-run-all clean build:webpack",
"test": "jest"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"mobx": "^3.1.9",
"mobx-react": "^4.1.5",
"react": "16.0.0-alpha.6",
"react-dom": "16.0.0-alpha.6",
"react-native": "0.43.2",
"react-native-vector-icons": "^4.0.1",
"react-native-web": "^0.0.81",
"react-navigation": "git+https://github.com/react-community/react-navigation.git#7edd9a7"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.10.4",
"babel-jest": "19.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-import": "^1.1.1",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-native": "1.9.1",
"babel-preset-stage-0": "^6.5.0",
"browser-sync": "^2.17.5",
"chokidar": "^1.6.1",
"classnames": "^2.2.5",
"components": "file:./app/components",
"connect-history-api-fallback": "^1.3.0",
"constants": "file:./app/constants",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"jest": "19.0.2",
"json-loader": "^0.5.4",
"model": "file:./app/model",
"npm-run-all": "^2.3.0",
"postcss-loader": "^0.9.1",
"postcss-scss": "^0.1.9",
"precss": "^1.4.0",
"react-addons-css-transition-group": "^15.5.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "16.0.0-alpha.6",
"redbox-react": "^1.3.6",
"rimraf": "^2.5.3",
"rucksack-css": "^0.8.6",
"style-loader": "^0.13.1",
"url-loader": "^0.5.8",
"utils": "file:./app/utils",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.1"
},
"jest": {
"preset": "react-native"
}
}