-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.13 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
{
"scripts": {
"build:graphiql-ui": "npm run build:graphiql-workers && esbuild graphiql-ui/main.jsx --bundle --format=esm --target=es2022 --loader:.ttf=file --outfile=public/graphiql/main.js",
"build:graphiql-workers": "esbuild node_modules/monaco-editor/esm/vs/editor/editor.worker.js --bundle --format=esm --target=es2022 --outfile=public/graphiql/editor.worker.js && esbuild node_modules/monaco-editor/esm/vs/language/json/json.worker.js --bundle --format=esm --target=es2022 --outfile=public/graphiql/json.worker.js && esbuild node_modules/monaco-editor/esm/vs/language/css/css.worker.js --bundle --format=esm --target=es2022 --outfile=public/graphiql/css.worker.js && esbuild node_modules/monaco-editor/esm/vs/language/html/html.worker.js --bundle --format=esm --target=es2022 --outfile=public/graphiql/html.worker.js && esbuild node_modules/monaco-editor/esm/vs/language/typescript/ts.worker.js --bundle --format=esm --target=es2022 --outfile=public/graphiql/ts.worker.js && esbuild graphiql-ui/graphql.worker.js --bundle --format=esm --target=es2022 --outfile=public/graphiql/graphql.worker.js",
"postinstall": "npm run build:graphiql-ui",
"prestart": "npm run build:graphiql-ui",
"prewatch": "npm run build:graphiql-ui",
"start": "node main.ts",
"watch": "RESOURCES_DIR=./examples node --watch main.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@apollo/server": "^5.4.0",
"@as-integrations/express4": "^1.1.2",
"@types/handlebars": "^4.1.0",
"@types/lodash.groupby": "^4.6.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.mapvalues": "^4.6.7",
"@types/lodash.transform": "^4.6.7",
"@types/node": "^24.0.0",
"dataloader": "^2.1.0",
"express": "^4.22.1",
"esbuild": "^0.27.3",
"graphiql": "^5.2.2",
"graphql": "^16.12.0",
"handlebars": "^4.7.6",
"lodash.groupby": "^4.6.0",
"lodash.isequal": "^4.5.0",
"lodash.mapvalues": "^4.6.0",
"lodash.transform": "^4.6.0",
"outdent": "^0.8.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=24"
},
"type": "module",
"devDependencies": {}
}