forked from graphql-editor/graphql-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.81 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
{
"name": "graphql-editor-monorepo",
"version": "5.5.10",
"private": false,
"license": "MIT",
"description": "Visual node editor for GraphQL",
"homepage": "https://graphqleditor.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint \"./src/**/*.{ts,js}\" --quiet --fix && prettier --write \"./src/**/*.{ts,js}\" ",
"run-all": "npm run build --ws --if-present && concurrently \"npm run start -w graphql-editor-worker\" \"npm run start -w graphql-editor\" \"npm run start -w sandbox\" ",
"run-all-debug": "npm run build --ws --if-present && concurrently \"npm run start -w graphql-editor-worker\" \"npm run start -w graphql-editor\" \"npm run start -w sandbox\" \"firefox -start-debugger-server\" ",
"regenerate-icons": "npm run run -w svg-ts-sync -- ./svg ./packages/editor/src/icons",
"update-deps": "npm i graphql-js-tree@latest -w graphql-editor && npm i graphql-js-tree@latest -w graphql-editor-worker",
"patchVersion": "npm version patch --ws --save",
"socket": "npm run start -w socket-live-test"
},
"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.15.5",
"@monaco-editor/react": "^4.5.1",
"@types/classnames": "^2.3.0",
"@types/faker": "^5.5.8",
"@types/file-saver": "^2.0.5",
"@types/graphql": "^14.2.3",
"@types/history": "4.7.9",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@types/query-string": "^6.2.0",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@types/remarkable": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"bddx": "^0.1.6",
"concurrently": "^7.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"monaco-editor": "^0.39.0",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^27.0.5",
"ttypescript": "^1.5.12",
"typescript": "^4.8.4",
"typescript-transform-paths": "^3.3.1"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@qix/elkjs-patched": "^0.8.0-patch3",
"unstated-next": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": {
"packages": [
"./packages/editor-worker",
"./packages/editor",
"./packages/svg-ts-sync",
"./packages/sandbox",
"./packages/socket-live-test"
]
}
}