forked from mobxjs/mst-gql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.48 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "mst-gql",
"version": "0.7.1",
"description": "Bindings for mobx-state-tree and GraphQL",
"author": "Michel Weststrate",
"keywords": [
"mobx-state-tree",
"graphql"
],
"homepage": "https://github.com/mobxjs/mst-gql#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mobxjs/mst-gql.git"
},
"bugs": {
"url": "https://github.com/mobxjs/mst-gql/issues"
},
"license": "MIT",
"main": "dist/mst-gql.js",
"source": "src/mst-gql.ts",
"umd:main": "dist/mst-gql.umd.js",
"module": "dist/mst-gql.module.js",
"jsnext:main": "dist/mst-gql.module.js",
"react-native": "dist/mst-gql.module.js",
"types": "./dist/mst-gql.d.ts",
"bin": {
"mst-gql": "./generator/mst-gql-scaffold.js"
},
"files": [
"dist",
"generator"
],
"scripts": {
"test": "jest test && cd examples/2-scaffolding && yarn && yarn start",
"watch": "jest test --watch",
"build": "microbundle --no-compress --external mobx,mobx-react,mobx-state-tree,graphql-tag,graphql,react,react-dom,graphql-request",
"format": "prettier --write '**/*'"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@types/pluralize": "^0.0.29",
"apollo": "^2.16.3",
"arg": "^4.1.1",
"camelcase": "^5.3.1",
"cosmiconfig": "^5.2.1",
"fast-json-stable-stringify": "^2.0.0",
"graphql": "14.3.0",
"graphql-request": "^1.8.2",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.4",
"@types/graphql": "^14.2.3",
"@types/jest": "^24.0.16",
"@types/react": "^16.8.24",
"@types/react-dom": "^16.8.5",
"escape-string-regexp": "^2.0.0",
"graphql-tag": "^2.10.1",
"husky": "^3.0.0",
"jest": "^24.8.0",
"microbundle": "^0.11.0",
"mobx": "^5.9.4",
"mobx-react": "^6.1.1",
"mobx-state-tree": "^3.14.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"relative-deps": "^0.1.0",
"subscriptions-transport-ws": "^0.9.16",
"typescript": "^3.4.5"
},
"peerDependencies": {
"mobx": "^4.0.0 || ^5.0.0",
"mobx-state-tree": "^3.0.0"
},
"resolutions": {
"graphql": "14.3.0"
}
}