forked from graphql-kit/graphql-voyager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 3.15 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
{
"name": "graphql-voyager",
"version": "1.0.0-rc.27",
"description": "GraphQL introspection viewer",
"main": "dist/voyager.lib.js",
"types": "typings/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config build/webpack.demo.js --hot --inline --mode=development",
"clean:release": "rimraf dist middleware",
"clean:demo": "rimraf demo-dist",
"bundle:standalone": "webpack --mode=production --config build/webpack.js -p",
"bundle:lib": "webpack --env.lib --mode=production --config build/webpack.js",
"bundle": "npm run bundle:lib && npm run bundle:standalone",
"compile:middleware": "tsc -d src/middleware/index.ts --outDir middleware --lib ES6,DOM,esnext.asynciterable",
"build:release": "npm run bundle && npm run compile:middleware && npm run declarations",
"build:demo": "npm run clean:demo && NODE_ENV=production webpack -p --config build/webpack.demo.js",
"deploy": "deploy-to-gh-pages --local --update demo-dist",
"stats": "NODE_ENV=production webpack --json --mode=production --config build/webpack.js > stats.json",
"prettier": "prettier --write \"{,!(node_modules)/**/}*.{ts,tsx}\"",
"declarations": "tsc --emitDeclarationOnly -p tsconfig.lib.json"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-transform-arrow-functions": "7.2.0",
"@babel/plugin-transform-block-scoping": "7.4.0",
"@babel/plugin-transform-classes": "7.4.3",
"@babel/plugin-transform-destructuring": "7.4.3",
"@types/classnames": "2.2.7",
"@types/clipboard": "2.0.1",
"@types/commonmark": "0.27.3",
"@types/graphql": "14.2.0",
"@types/lodash": "4.14.123",
"@types/prop-types": "15.7.1",
"@types/react": "16.8.23",
"@types/react-dom": "16.8.4",
"@types/webpack": "4.4.27",
"babel-loader": "8.0.5",
"copy-webpack-plugin": "5.0.2",
"css-loader": "2.1.1",
"deploy-to-gh-pages": "1.3.7",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "3.0.1",
"graphql": "14.2.1",
"html-webpack-plugin": "3.2.0",
"postcss-cssnext": "3.1.0",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-variables-loader": "5.0.1",
"prettier": "1.17.0",
"raw-loader": "1.0.0",
"react": "16.8.6",
"react-clipboard.js": "2.0.7",
"react-dom": "16.8.6",
"react-svg-loader": "2.1.0",
"rimraf": "2.6.3",
"style-loader": "0.23.1",
"svg-as-symbol-loader": "1.2.1",
"ts-loader": "5.3.3",
"typescript": "3.4.4",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"webpack-dev-server": "3.3.1",
"webpack-node-externals": "1.7.2"
},
"peerDependencies": {
"graphql": ">=0.9.0",
"react": ">=15.4.2",
"react-dom": ">=15.4.2"
},
"dependencies": {
"@f/animate": "^1.0.1",
"@material-ui/core": "^3.9.3",
"classnames": "^2.2.6",
"clipboard": "^2.0.4",
"commonmark": "^0.29.0",
"lodash": "^4.17.10",
"prop-types": "^15.7.2",
"svg-pan-zoom": "^3.6.0",
"viz.js": "2.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/APIs-guru/graphql-voyager.git"
}
}