-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "the-graphql-workshop",
"private": true,
"type": "module",
"workspaces": [
"src/*"
],
"version": "1.0.0",
"license": "CC-BY-SA-4.0",
"author": "Sameer Srivastava <sameer.srivastava@nearform.com>",
"contributors": [
"Simone Busoli <simone.busoli@nearform.com>"
],
"scripts": {
"build": "slidev build",
"start": "slidev --open",
"export": "slidev export",
"db:up": "docker compose up -d",
"db:migrate": "postgrator",
"db:down": "docker compose down",
"lint": "eslint .",
"test": "node --test --test-concurrency 1"
},
"devDependencies": {
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.2"
},
"dependencies": {
"@fastify/postgres": "^6.0.2",
"@graphql-tools/schema": "^10.0.32",
"@mercuriusjs/federation": "^5.1.1",
"@mercuriusjs/gateway": "^5.2.0",
"@nearform/sql": "^1.10.7",
"@slidev/cli": "^52.14.2",
"@slidev/theme-default": "^0.25.0",
"@vueuse/shared": "^14.2.1",
"desm": "^1.3.1",
"env-schema": "^7.0.0",
"fastify": "^5.8.4",
"fluent-json-schema": "^6.0.0",
"graphql": "^16.13.2",
"mercurius": "^16.9.0",
"pg": "^8.20.0",
"pino-pretty": "^13.1.3",
"postgrator-cli": "^9.1.0",
"slidev-theme-nearform": "^2.1.0"
}
}