Skip to content

Commit 2642eaa

Browse files
committed
Add package.json
1 parent 0e8d6be commit 2642eaa

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

package.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "react-transporter",
3+
"version": "0.1.0",
4+
"main": "./lib/index.js",
5+
"description": "React.js Redux GraphQL client",
6+
"author": "Markus Wetzel <markuswetzel@gmx.net>",
7+
"license": "MIT",
8+
"keywords": ["react", "redux", "graphql", "api"],
9+
"repository": "https://github.com/ProAI/react-transporter.git",
10+
"bugs": {
11+
"url": "https://github.com/ProAI/react-transporter/issues"
12+
},
13+
"scripts": {
14+
"build": "./node_modules/.bin/babel -d lib/ src/",
15+
"watch": "./node_modules/.bin/babel -d lib/ -w src/",
16+
"lint": "./node_modules/.bin/eslint src"
17+
},
18+
"dependencies": {
19+
"graphql": "^0.10.5",
20+
"graphql-tag": "^2.4.2"
21+
},
22+
"devDependencies": {
23+
"babel-cli": "6.24.1",
24+
"eslint": "4.4.1",
25+
"react": "15.6.1",
26+
"react-dom": "15.6.1",
27+
"react-kickstarter": "0.2.13",
28+
"react-redux": "5.0.6",
29+
"react-router": "4.1.2",
30+
"react-router-dom": "4.1.2",
31+
"redux": "3.7.2",
32+
"redux-form": "7.0.3"
33+
},
34+
"peerDependencies": {
35+
"react": "^15.0.0",
36+
"react-dom": "^15.0.0",
37+
"react-redux": "^5.0.0",
38+
"redux": "^3.0.0"
39+
},
40+
"engines": {
41+
"npm": ">=3",
42+
"node": ">=5"
43+
}
44+
}

0 commit comments

Comments
 (0)