forked from mjohnston/react-native-webpack-server
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.25 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-webpack-server",
"version": "0.9.2",
"description": "Build React Native apps with Webpack",
"main": "lib/Server.js",
"author": {
"name": "Michael Johnston",
"email": "[email protected]",
"url": "https://github.com/mjohnston"
},
"repository": {
"type": "git",
"url": "https://github.com/mjohnston/react-native-webpack-server.git"
},
"bugs": {
"url": "https://github.com/mjohnston/react-native-webpack-server/issues"
},
"keywords": [
"react-native",
"webpack"
],
"license": "MIT",
"bin": {
"rnws": "./bin/rnws.js",
"react-native-webpack-server": "./bin/rnws.js"
},
"files": [
"bin",
"hot",
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint bin hot lib",
"test": "npm run lint"
},
"engines": {
"node": ">=4.0.0"
},
"peerDependencies": {
"react": ">=0.14.5",
"react-native": ">=0.21.0",
"webpack": ">=1.8.4",
"webpack-dev-server": ">=1.8.0"
},
"dependencies": {
"bluebird": "^2.9.24",
"commander": "^2.8.1",
"express": "^4.13.3",
"mkdirp": "^0.5.1",
"semver": "^5.0.3",
"socket-retry-connect": "0.0.1",
"source-map": "^0.5.1"
},
"devDependencies": {
"eslint": "^1.5.1"
}
}