forked from dm94/stiletto-node-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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": "stiletto-node-api",
"version": "3.0.5",
"description": "API for [Stiletto Web](https://github.com/dm94/stiletto-web)",
"type": "module",
"scripts": {
"lint": "biome lint --write ./src",
"format": "biome format --write ./src",
"check:types": "tsc --noEmit",
"build": "esbuild `find src \\( -name '*.ts' \\)` --platform=node --outdir=build --resolve-extensions=.js",
"build:docker:prod": "docker build . -t my-fastify-app --build-arg APP_ENV=production",
"start": "node build",
"dev": "tsx watch src .env | pino-pretty --colorize",
"pretest": "npm run build",
"test": "vitest",
"test:watch": "vitest -w"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"nodejs",
"fastify",
"typescript"
],
"author": "Daniel Martín",
"bugs": {
"url": "https://github.com/dm94/stiletto-node-api/issues"
},
"homepage": "https://github.com/dm94/stiletto-node-api",
"dependencies": {
"@fastify/autoload": "^5.8.3",
"@fastify/cors": "^9.0.1",
"@fastify/jwt": "^8.0.1",
"@fastify/mongodb": "^8.0.0",
"@fastify/mysql": "^4.3.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@sinclair/typebox": "^0.34.9",
"ajv": "^8.16.0",
"axios": "^1.7.2",
"discord-oauth2": "^2.12.1",
"dotenv": "^16.4.5",
"env-schema": "^5.2.1",
"fastify": "^4.27.0",
"fastify-plugin": "^4.5.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20.14.1",
"esbuild": "^0.21.4",
"pino-pretty": "^11.1.0",
"tsx": "^4.11.2",
"typescript": "^5.4.5",
"vitest": "^2.1.8"
}
}