-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "fastify-and-dragonfly",
"version": "1.0.0",
"description": "Application to demonstrate Fastify and Dragonfly",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "husky",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"infra:up": "docker-compose up -d",
"db:migrate": "postgrator",
"infra:down": "docker-compose down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fastify-and-dragonfly.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nearform/fastify-and-dragonfly/issues"
},
"homepage": "https://github.com/nearform/fastify-and-dragonfly#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.4",
"postgrator-cli": "^9.0.0",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
},
"dependencies": {
"@fastify/autoload": "^6.0.1",
"@fastify/postgres": "^6.0.1",
"@fastify/redis": "^7.0.1",
"desm": "^1.3.1",
"env-schema": "^6.0.0",
"fastify": "^5.1.0",
"fluent-json-schema": "^5.0.0",
"ioredis": "^5.4.1",
"fastify-plugin": "^5.0.1",
"mercurius": "^15.1.0",
"mercurius-cache": "^7.0.2",
"pg": "^8.13.1",
"pino-pretty": "^13.0.0"
}
}