-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.2 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
{
"name": "inp-net-developers",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "concurrently 'bun vite dev' 'bun hive-gateway supergraph --port 5000'",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"gateway:start": "hive-gateway supergraph --port 5000",
"supergraph:update": "sh update-supergraph.sh",
"authentik:update-manifest": "curl -fsSL https://auth.inpt.fr/api/v3/schema/ -o authentik.yaml && patch < authentik.patch authentik.yaml",
"authentik:update": "bun run authentik:update-manifest && bun run supergraph:update",
"app:start": "node ./build/index.js",
"startall": "concurrently 'bun gateway:start' 'bun app:start'"
},
"devDependencies": {
"@ewen-lbh/houdini": "^1.4.0",
"@graphql-mesh/compose-cli": "^1.1.8",
"@omnigraph/openapi": "^0.107.6",
"@parcel/watcher": "^2.5.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^9.6.0",
"@types/slug": "^5.0.9",
"concurrently": "^9.1.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"houdini-svelte": "^2.0.0",
"mdsvex": "^0.11.2",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.0.3"
},
"dependencies": {
"@graphql-hive/gateway": "^1.4.12",
"@graphql-mesh/migrate-config-cli": "^1.2.3",
"@graphql-mesh/transform-filter-schema": "^0.102.12",
"@graphql-mesh/transform-naming-convention": "^0.102.12",
"@graphql-mesh/transform-prefix": "^0.102.12",
"@graphql-mesh/transform-rename": "^0.102.12",
"@graphql-mesh/transform-type-merging": "^0.102.12",
"@sveltejs/adapter-node": "^5.2.9",
"arctic": "^2.2.2",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"slug": "^10.0.0",
"svelte-tiny-linked-charts": "^1.6.2"
},
"patchedDependencies": {
"@graphql-tools/[email protected]": "patches/@graphql-tools%[email protected]"
}
}