-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "@kudoo/graphql",
"version": "3.0.9",
"description": "Graphql services and typedefs for Kudoo",
"main": "./build/index.js",
"scripts": {
"copy-typedefs": "ncp ./src/typedefs ./build/typedefs",
"build": "babel src --out-dir ./build && npm run copy-typedefs",
"prepublishOnly": "npm run build",
"watch": "watch \"npm run build\" ./src",
"version": "auto-changelog -p && git add CHANGELOG.md",
"release": "np --no-yarn"
},
"author": "Kudoo Cloud Pty Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KudooCloud/kudoo-graphql.git"
},
"bugs": {
"url": "https://github.com/KudooCloud/kudoo-graphql/issues"
},
"homepage": "https://github.com/KudooCloud/kudoo-graphql.git",
"dependencies": {
"@babel/runtime": "^7.3.1",
"apollo-link": "^1.2.3",
"apollo-link-http": "1.5.7",
"cross-fetch": "^2.2.2",
"es6-promise": "^4.2.5",
"exports-loader": "^0.7.0",
"graphql": "14.0.0",
"graphql-tag": "^2.10.0",
"imports-loader": "^0.8.0",
"lodash": "^4.17.14",
"ncp": "^2.0.0",
"react": "16.5.2",
"react-apollo": "2.0.4",
"react-dom": "16.5.2",
"recompose": "^0.30.0",
"watch": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"auto-changelog": "^1.12.0",
"babel-plugin-import-graphql": "2.7.0",
"babel-plugin-module-resolver": "^3.1.1",
"np": "^4.0.2"
},
"peerDependencies": {
"react": "*"
},
"publishConfig": {
"access": "public"
}
}