-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.82 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.82 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "gql-editor",
"version": "1.1.1",
"grammarVersion": "1.4.2",
"main": "index.js",
"repository": "https://github.com/opengql/editor",
"license": "MIT",
"private": true,
"scripts": {
"build:dev": "cross-env NODE_ENV='development' webpack --config ./webpack.config.js",
"build:prod": "cross-env NODE_ENV='production' webpack --config ./webpack.config.js",
"serve:editor": "cross-env NODE_ENV='development' webpack serve --config ./webpack.editor.config.js",
"serve:worker": "cross-env NODE_ENV='development' webpack watch --config ./webpack.worker.config.js",
"grammar:build": "node ./script/grammar-build.js",
"grammar:download": "node ./script/grammar-download.js",
"test:e2e": "jest --config=jest-config.e2e.js --runInBand",
"test:editor": "jest --config=./jest-config.editor.js",
"test:worker": "jest --config=./jest-config.worker.js",
"coverage:editor": "jest --config=./jest-config.editor.js --coverage"
},
"jest": {
"projects": [
"jest-config.e2e.js",
"jest-config.editor.js",
"jest-config.worker.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@octokit/core": "^6.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"babel-jest": "^29.7.0",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"documentation": "^14.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsdoc": "^48.5.2",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-sort-class-members": "^1.19.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"jest-css-modules": "^2.1.0",
"jest-cucumber": "^3.0.1",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^16.0.0",
"mini-css-extract-plugin": "^2.8.0",
"node-fetch": "^3.3.2",
"prettier": "^3.2.4",
"prop-types": "^15.8.1",
"puppeteer": "^22.10.1",
"redux-mock-store": "^1.5.4",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-webpack-plugin": "^5.0.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@babel/core": "^7.23.9",
"@egjs/hammerjs": "^2.0.17",
"@reduxjs/toolkit": "^2.2.1",
"antlr4": "^4.13.1-patch-1",
"axios": "^1.6.7",
"babel-loader": "^9.1.3",
"base64-js": "^1.5.1",
"component-emitter": "^1.3.1",
"fuse.js": "^7.0.0",
"html-react-parser": "^5.1.5",
"keycharm": "^0.4.0",
"lodash": "^4.17.21",
"pako": "^2.1.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.1",
"react-simple-code-editor": "^0.13.1",
"reflect-metadata": "^0.2.1",
"text-encoding-utf-8": "^1.0.2",
"uuid": "^9.0.1",
"vis-data": "^7.1.9",
"vis-network": "^9.1.9",
"vis-util": "^5.0.1",
"vis-utils": "^0.2.1"
}
}