-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
134 lines (134 loc) · 4.58 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "fastify-boilerplate",
"version": "1.5.38",
"description": "A Fastify template that follows the Clean Architecture principles and encourages established practices.",
"author": "Marco Turi <[email protected]>",
"license": "MIT",
"scripts": {
"create:env": "node -r fs -e \"fs.copyFileSync('.env.example', '.env', fs.constants.COPYFILE_EXCL)\"",
"start": "tsx watch src --env-file=.env | pino-pretty",
"start:prod": "node ./dist/index.js --env-file=.env",
"build": "rm -rf ./dist && tsc --project tsconfig.build.json && resolve-tspaths -p tsconfig.build.json -s ./src -o ./dist",
"test": "yarn test:unit",
"test:coverage": "c8 node --import tsx --test src/**/*.spec.ts",
"test:unit": "node --import tsx --test src/**/*.spec.ts",
"test:e2e": "npx cucumber-js --exit",
"format": "prettier --write .",
"format:ci": "prettier src --check",
"lint": "eslint --fix",
"lint:ci": "eslint",
"type:check": "tsc --noEmit",
"db": "dbmate h",
"db:create-migration": "dbmate new",
"db:migrate": "dbmate -e DBMATE_DATABASE_URL up",
"db:create-seed": "dbmate -e DBMATE_DATABASE_URL -d ./db/seeds/ new",
"db:seed": "dbmate -e DBMATE_DATABASE_URL -d ./db/seeds/ up",
"db:seed:users": "artillery run ./tests/user/create-user/create-user.artillery.yaml",
"generate:client-types": "npx openapi-typescript http://127.0.0.1:3000/api-docs/json -o ./client.schema.d.ts",
"depcruise": "depcruise",
"deps:validate": "depcruise src --config .dependency-cruiser.js --output-type err-long",
"deps:graph": "depcruise src --include-only \"^src\" --config --output-type dot | dot -T svg > doc/dependency-graph.svg",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release",
"outdated": "yarn upgrade-interactive"
},
"engines": {
"node": ">=22.11.0",
"yarn": ">=4.0.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@fastify/autoload": "6.0.3",
"@fastify/awilix": "6.0.2",
"@fastify/cors": "10.0.2",
"@fastify/helmet": "13.0.1",
"@fastify/request-context": "6.0.2",
"@fastify/swagger": "9.4.2",
"@fastify/swagger-ui": "5.2.1",
"@fastify/type-provider-json-schema-to-ts": "4.0.1",
"@fastify/type-provider-typebox": "5.1.0",
"@fastify/under-pressure": "9.0.3",
"@gquittet/graceful-server": "5.2.9",
"@graphql-tools/load-files": "7.0.1",
"@graphql-tools/merge": "9.0.17",
"@sinclair/typebox": "0.34.14",
"ajv-formats": "3.0.1",
"awilix": "12.0.4",
"env-schema": "6.0.1",
"fastify": "5.2.1",
"fastify-plugin": "5.0.1",
"graphql": "16.10.0",
"helmet": "8.0.0",
"mercurius": "15.1.0",
"pino": "9.6.0",
"postgres": "3.4.5",
"ramda": "0.30.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@cucumber/cucumber": "11.2.0",
"@cucumber/html-formatter": "21.8.0",
"@cucumber/messages": "27.0.2",
"@cucumber/pretty-formatter": "1.0.1",
"@eslint/compat": "1.2.5",
"@eslint/js": "9.19.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"@trivago/prettier-plugin-sort-imports": "5.2.1",
"@tsconfig/node22": "22.0.0",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.10",
"@types/ramda": "0.30.2",
"artillery": "2.0.22",
"artillery-plugin-faker": "5.0.2",
"c8": "10.1.3",
"dbmate": "2.25.0",
"dependency-cruiser": "16.9.0",
"eslint": "9.19.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"pino-pretty": "13.0.0",
"pinst": "3.0.0",
"prettier": "3.4.2",
"resolve-tspaths": "0.8.23",
"semantic-release": "24.2.1",
"ts-node": "10.9.2",
"tsc-alias": "1.8.10",
"tsconfig-paths": "4.2.0",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0"
},
"keywords": [
"fastify",
"domain-driven-design",
"functional-programming",
"vertical-slice-architecture",
"cucumber",
"clean-architecture",
"typescript",
"template",
"boilerplate"
]
}