-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.94 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
{
"name": "subkit-graphiql",
"version": "0.2.6",
"author": "Mike Bild <mike.bild@googlemail.com>",
"license": "MIT",
"description": "GraphiQL for SubKit",
"homepage": "https://github.com/codecommission/subkit-graphiql#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/codecommission/subkit-graphiql.git"
},
"bugs": {
"url": "https://github.com/codecommission/subkit-graphiql/issues"
},
"keywords": [
"graphql",
"subscriptions",
"server-side-events",
"graphiql"
],
"main": "dist/graphiql.js",
"browser": "dist/graphiql.js",
"files": [
"dist",
"browser"
],
"scripts": {
"build": "webpack -p --progress",
"prepublish": "npm run build",
"dev": "API_HOST=http://localhost:8080 webpack-dev-server",
"commit": "git-cz"
},
"babel": {
"presets": [
[
"env",
{
"modules": false
}
],
"react"
]
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.22.0",
"commitizen": "^2.9.6",
"css-loader": "^0.28.7",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"graphiql": "^0.11.10",
"graphql": "^0.11.7",
"html-webpack-plugin": "^2.30.1",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.1.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"static-server": "^3.0.0",
"style-loader": "^0.19.0",
"styled-components": "^2.2.2",
"subscriptions-transport-sse": "^0.9.2",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}