-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
62 lines (62 loc) · 1.64 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": "the-fastify-workshop",
"private": true,
"workspaces": [
"src/*"
],
"version": "1.0.0",
"license": "CC-BY-SA-4.0",
"author": "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 --ext .ts,.js ./src",
"test": "c8 --check-coverage --100 node --test"
},
"dependencies": {
"@fastify/autoload": "^6.0.2",
"@fastify/jwt": "^9.0.1",
"@fastify/postgres": "^6.0.1",
"@nearform/sql": "^1.10.5",
"@sinclair/typebox": "^0.33.22",
"@slidev/cli": "^0.49.29",
"@vueuse/shared": "^11.2.0",
"desm": "^1.3.0",
"env-schema": "^6.0.0",
"fastify": "^5.0.0",
"fluent-json-schema": "^5.0.0",
"http-errors": "^2.0.0",
"pg": "^8.13.1",
"pino-pretty": "^13.0.0",
"slidev-theme-nearform": "^2.0.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/http-errors": "^2.0.2",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"c8": "^10.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sql": "^2.5.0",
"postgrator-cli": "^9.0.0",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
},
"tap": {
"node-arg": [
"--no-warnings"
]
}
}