forked from RickWong/react-transmit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "react-transmit",
"description": "Relay-inspired library based on Promises instead of GraphQL.",
"version": "2.6.1",
"license": "BSD-3",
"repository": {
"type": "git",
"url": "https://github.com/RickWong/react-transmit.git"
},
"homepage": "https://github.com/RickWong/react-transmit",
"keywords": [
"react",
"transmit",
"relay",
"react-component"
],
"main": "src/lib/react-transmit.js",
"scripts": {
"localhost": "sleep 3; which open && open http://localhost:8080",
"build": "webpack --verbose --colors --display-error-details --config webpack.client.js",
"watch-client": "webpack --verbose --colors --display-error-details --config webpack.client-watch.js && webpack-dev-server --config webpack.client-watch.js",
"watch": "concurrent --kill-others 'npm run watch-client' 'npm run localhost'"
},
"dependencies": {
"ascii-json": "0.2.0",
"bluebird": "^2.9.26",
"react": ">= 0.12.0"
},
"devDependencies": {
"babel-core": "5.2.13",
"babel-loader": "5.0.0",
"babel-runtime": "5.2.13",
"concurrently": "0.0.5",
"isomorphic-fetch": "2.0.2",
"json-loader": "0.5.1",
"react-hot-loader": "1.2.6",
"react-inline-css": "1.1.1",
"webpack": "1.8.11",
"webpack-dev-server": "1.8.2"
},
"engines": {
"node": ">=0.10.32"
}
}