forked from graphql-editor/graphql-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.69 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
88
89
90
91
92
93
{
"name": "graphql-editor",
"version": "2.0.6",
"private": false,
"license": "MIT",
"description": "Visual node editor for GraphQL",
"homepage": "https://graphqleditor.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "webpack-dev-server --config ./sandbox/webpack.config.js --content-base ./sandbox/ --port 1568 --hot --inline --open",
"build": "grunt",
"watch": "tsc",
"test": "jest",
"docs": "typedoc --mode file --out docs --theme minimal --ignoreCompilerErrors --target ES6 "
},
"resolutions": {
"@types/react": "^16.4.14"
},
"repository": {
"type": "git",
"url": "https://github.com/slothking-online/graphql-editor.git"
},
"bugs": {
"url": "https://github.com/slothking-online/graphql-editor.git"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/classnames": "^2.2.6",
"@types/faker": "^4.1.4",
"@types/graphql": "^14.0.1",
"@types/history": "4.7.2",
"@types/jest": "^24.0.9",
"@types/node": "^10.12.18",
"@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",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.4",
"css-loader": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"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.21",
"html-loader": "^1.0.0-alpha.0",
"html-webpack-plugin": "^3.0.4",
"husky": "^1.3.1",
"jest": "^24.1.0",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^6.0.2",
"prettier": "^1.14.3",
"raw-loader": "^2.0.0",
"react-hot-loader": "^4.3.11",
"ts-jest": "^23.10.5",
"typedoc": "^0.14.2",
"typescript": "^3.4.5",
"url-loader": "^1.1.1",
"webpack": "^4.28.4",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"classnames": "^2.2.5",
"faker": "^4.1.0",
"graphql": "^14.0.2",
"graphql-zeus": "^1.5.0",
"graphsource": "^1.2.4",
"moment": "^2.21.0",
"query-string": "^6.2.0",
"react": "^16.5.2",
"react-ace": "^7.0.4",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1",
"typestyle": "^2.0.1",
"unstated": "^2.1.1",
"utility-types": "^3.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}