forked from graphql-editor/graphql-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.41 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "graphql-editor",
"version": "5.0.0",
"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",
"start-ci": "webpack-dev-server --config ./sandbox/webpack.config.ci.js --content-base ./sandbox/ --port 1568 --hot --inline --open",
"build": "ttsc --build tsconfig.build.json",
"watch": "ttsc --watch",
"domTree": "tree src/domStructure/domStructure.treelang -f ts > src/domStructure/domStructure.ts",
"test": "jest",
"e2e:test": "cypress open",
"updatedeps": "npm i graphql-zeus@latest graphsource@latest",
"lint": "eslint \"./src/**/*.{ts,js}\" --quiet --fix && prettier --write \"./src/**/*.{ts,js}\" "
},
"resolutions": {
"@types/react": "^16.9.11"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql-editor/graphql-editor.git"
},
"bugs": {
"url": "https://github.com/graphql-editor/graphql-editor.git"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@monaco-editor/react": "^4.2.1",
"@types/classnames": "^2.2.6",
"@types/faker": "^4.1.4",
"@types/graphql": "^14.0.1",
"@types/history": "4.7.5",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/query-string": "^6.1.1",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/webpack": "4.41.12",
"@types/webpack-env": "^1.13.5",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-loader": "^8.0.4",
"css-loader": "^5.2.1",
"cypress": "^7.1.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^6.2.1",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"mocha": "^7.1.2",
"monaco-editor": "^0.25.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.3.11",
"style-loader": "^2.0.0",
"treelang": "0.0.1",
"ts-jest": "^25.4.0",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"ttypescript": "^1.5.12",
"typedoc": "^0.19.2",
"typescript": "^4.3.5",
"typescript-transform-paths": "^2.0.1",
"url-loader": "^4.1.0",
"webpack": "^5.33.2",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"worker-loader": "^3.0.8"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2",
"worker-loader": ">=2.0.0",
"file-loader": ">=5.0.2",
"css-loader": ">=2.1.1",
"monaco-editor": ">=0.25.0"
},
"dependencies": {
"classnames": "^2.2.5",
"color2k": "^1.2.4",
"graphql-language-service": "^3.1.4",
"graphql-zeus": "^3.1.0",
"graphsource": "^2.0.2",
"re-resizable": "^6.1.1",
"typestyle": "^2.0.1",
"unstated-next": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}