forked from dabbott/react-native-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.78 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
50
51
52
53
54
55
56
57
58
59
{
"name": "react-native-express",
"version": "1.0.0",
"description": "Interactive examples, code samples, and tutorial projects for React Native",
"main": "src/index.js",
"scripts": {
"start": "node server/index.js",
"postinstall": "npm run build",
"dev": "webpack-dev-server --env.dev",
"build": "webpack",
"clean": "rm dist/*",
"analyze": "webpack --json | webpack-bundle-size-analyzer",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "6.3.1"
},
"author": "Devin Abbott <devinabbott@gmail.com> (http://github.com/dabbott)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dabbott/react-native-express"
},
"homepage": "https://github.com/dabbott/react-native-express",
"keywords": [
"react",
"react-native"
],
"dependencies": {
"compression": "^1.6.2",
"express": "^4.14.0",
"react": "15.3.0",
"react-disqus-thread": "github:maphubs/react-disqus-thread",
"react-dom": "15.3.0",
"react-ga": "^2.1.2",
"react-helmet": "^3.2.2",
"react-router": "^3.0.0",
"react-router-scroll": "^0.4.1",
"react-styles-provider": "^0.4.0-beta.1"
},
"devDependencies": {
"babel-core": "6.13.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "0.23.1",
"immutability-helper": "^2.0.0",
"postcss-loader": "0.9.1",
"raw-loader": "^0.5.1",
"react-hot-loader": "3.0.0-beta.1",
"style-loader": "0.13.1",
"webpack": "2.1.0-beta.20",
"webpack-dev-server": "2.1.0-beta.0"
}
}