-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"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": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.4.2"
},
"dependencies": {
"@fastify/postgres": "^6.0.2",
"@graphql-tools/schema": "^10.0.16",
"@mercuriusjs/federation": "^5.0.0",
"@mercuriusjs/gateway": "^5.0.0",
"@nearform/sql": "^1.10.5",
"@slidev/cli": "^51.1.0",
"@slidev/theme-default": "^0.25.0",
"@vueuse/shared": "^12.5.0",
"desm": "^1.3.1",
"env-schema": "^6.0.1",
"fastify": "^5.2.1",
"fluent-json-schema": "^5.0.0",
"graphql": "^16.10.0",
"mercurius": "^16.0.1",
"pg": "^8.13.1",
"pino-pretty": "^13.0.0",
"postgrator-cli": "^9.0.1",
"slidev-theme-nearform": "^2.0.0"
}
}