-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 877 Bytes
/
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
{
"name": "mobx-graphql",
"version": "0.1.1",
"description": "Mobx bindings to apollo-client queries and mutations",
"main": "build/index.js",
"scripts": {
"prebuild": "rimraf build",
"build": "tsc -p src/tsconfig.json --rootDir src --outDir build",
"postbuild": "dts-generator --name mobx-graphql --out index.d.ts --project src --main mobx-graphql/index",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agonbina/mobx-graphql.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/agonbina/mobx-graphql/issues"
},
"homepage": "https://github.com/agonbina/mobx-graphql#readme",
"devDependencies": {
"dts-generator": "^2.1.0",
"rimraf": "^2.6.1",
"typescript": "2.1.x"
},
"peerDependencies": {
"apollo-client": "^0.9.0",
"mobx": "^3.1.0"
}
}