forked from nearform/the-graphql-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "the-graphql-workshop",
"private": true,
"type": "module",
"workspaces": ["src/*"],
"version": "1.0.0",
"license": "CC-BY-SA-4.0",
"author": "Sameer Srivastava <[email protected]>",
"contributors": ["Simone Busoli <[email protected]>"],
"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": "c8 tap --no-cov"
},
"devDependencies": {
"c8": "^8.0.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"sinon": "^16.1.0",
"tap": "^16.3.8"
},
"dependencies": {
"@fastify/postgres": "^5.2.0",
"@graphql-tools/schema": "^10.0.0",
"@mercuriusjs/federation": "^2.0.0",
"@mercuriusjs/gateway": "^2.0.0",
"@nearform/sql": "^1.10.5",
"@slidev/cli": "^0.43.7",
"@slidev/theme-default": "^0.21.2",
"@vueuse/shared": "^10.5.0",
"desm": "^1.3.0",
"env-schema": "^5.2.0",
"fastify": "^4.24.2",
"fluent-json-schema": "^4.1.2",
"graphql": "^16.8.1",
"mercurius": "^13.1.0",
"pg": "^8.11.3",
"pino-pretty": "^10.2.3",
"postgrator-cli": "^7.0.0",
"slidev-theme-nearform": "^1.5.5"
}
}