-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "@absinthe/graphql-playground",
"version": "1.3.5",
"description": "GraphQL Playground for Absinthe",
"main": "./dist/main.js",
"contributors": [
"Christian Meunier <[email protected]>"
],
"license": "MIT",
"private": false,
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"precommit": "pretty-quick --staged",
"prepublishOnly": "yarn build",
"release": "np"
},
"files": [
"dist/main.js"
],
"dependencies": {
"@absinthe/socket": "^0.1.10",
"@absinthe/socket-apollo-link": "^0.1.11",
"apollo-link": "^1.2.2",
"apollo-link-http": "^1.5.4",
"graphql-playground-react": "^1.7.19",
"phoenix": "^1.3.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"np": "^3.0.4",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"svg-inline-loader": "^0.8.0",
"url-loader": "^1.0.1",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"resolutions": {
"graphql-playground-react/graphql": "0.12.3",
"@jumpn/*/graphql": "0.12.3",
"@absinthe/*/graphql": "0.12.3"
}
}