forked from graphql-editor/graphql-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "graphql-editor",
"version": "0.8.0",
"private": false,
"description": "Visual node editor for GraphQL",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config ./sandbox/webpack.config.js --content-base ./sandbox/ --hot --inline --open",
"build": "grunt",
"prettier": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"docs": "docz dev",
"build:docs": "docz build"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@types/classnames": "^2.2.6",
"@types/faker": "^4.1.4",
"@types/graphql": "^14.0.1",
"@types/history": "4.7.2",
"@types/query-string": "^6.1.1",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-router": "4.4.3",
"@types/react-router-dom": "^4.3.1",
"@types/webpack": "4.4.22",
"@types/webpack-env": "^1.13.5",
"babel-loader": "^8.0.4",
"css-loader": "^2.1.0",
"docz": "^0.13.7",
"docz-theme-default": "^0.13.7",
"file-loader": "^3.0.1",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-ts": "^6.0.0-beta.19",
"html-loader": "^1.0.0-alpha.0",
"html-webpack-plugin": "^3.0.4",
"mini-css-extract-plugin": "^0.5.0",
"prettier": "^1.14.3",
"react-hot-loader": "^4.3.11",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.2",
"typescript": "^3.2.2",
"url-loader": "^1.1.1",
"webpack": "^4.19.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"@slothking-online/diagram": "^1.1.0",
"classnames": "^2.2.5",
"faker": "^4.1.0",
"file-saver": "^2.0.0",
"graphql": "^14.0.2",
"moment": "^2.21.0",
"query-string": "^6.2.0",
"react": "^16.5.2",
"react-ace": "^6.2.0",
"react-dom": "^16.5.2",
"react-ga": "^2.5.6",
"react-router-dom": "^4.3.1",
"typestyle": "^2.0.1",
"utility-types": "^3.2.0"
}
}