-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "example-graphiql-webpack",
"version": "0.0.0",
"private": true,
"license": "MIT",
"description": "A GraphiQL example with Webpack",
"scripts": {
"build-demo": "webpack-cli && mkdirp ../../packages/graphiql/webpack && cp -r dist/** ../../packages/graphiql/webpack",
"start": "NODE_ENV=development webpack-cli serve"
},
"dependencies": {
"@graphiql/plugin-code-exporter": "^5.1.1",
"@graphiql/plugin-explorer": "^5.1.1",
"@graphiql/react": "^0.37.3",
"@graphiql/toolkit": "^0.11.3",
"graphiql": "^5.2.2",
"graphql": "^16.9.0",
"graphql-ws": "^5.5.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"ajv-formats": "^3.0.1",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "11.0.0",
"cross-env": "^7.0.2",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"react-hot-loader": "^4.13.1",
"style-loader": "^3.3.1",
"webpack": "5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1",
"webpack-manifest-plugin": "^5.0.0",
"workbox-webpack-plugin": "^7.0.0",
"worker-loader": "^2.0.0"
}
}