-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "example-graphiql-webpack",
"version": "0.0.0",
"private": true,
"license": "MIT",
"description": "A GraphiQL example with webpack and typescript",
"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": "^3.1.4",
"@graphiql/plugin-explorer": "^3.2.5",
"@graphiql/toolkit": "^0.11.1",
"@graphiql/react": "^0.28.2",
"graphiql": "^3.8.3",
"graphql": "^16.9.0",
"graphql-ws": "^5.5.5",
"react": "^18.2.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",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "11.0.0",
"cross-env": "^7.0.2",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"webpack": "5.94.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"worker-loader": "^2.0.0",
"workbox-webpack-plugin": "^7.0.0",
"webpack-manifest-plugin": "^5.0.0"
}
}