-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.21 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.21 KB
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
{
"name": "fastify-demo",
"version": "0.0.0",
"description": "The official Fastify demo!",
"main": "app.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run build && node dist/server.js",
"build": "tsc",
"watch": "tsc -w",
"dev": "tsx --env-file=.env ./src/server.ts",
"test": "npm run db:seed && c8 npm run test:run",
"test:run": "glob -c \"tsx --test\" \"./test/**/*.ts\"",
"lint": "eslint --ignore-pattern=dist",
"lint:fix": "npm run lint -- --fix",
"db:create": "tsx --env-file=.env ./scripts/create-database.ts",
"db:drop": "tsx --env-file=.env ./scripts/drop-database.ts",
"db:migrate": "tsx --env-file=.env ./scripts/migrate.ts",
"db:seed": "tsx --env-file=.env ./scripts/seed-database.ts"
},
"keywords": [
"fastify",
"demo"
],
"author": "Michelet Jean <jean.antoine.michelet@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/demo.git"
},
"homepage": "https://github.com/fastify/demo#readme",
"bugs": {
"url": "https://github.com/fastify/demo/issues"
},
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/env": "^6.0.0",
"@fastify/helmet": "^13.0.2",
"@fastify/multipart": "^9.4.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.4",
"@fastify/session": "^11.1.1",
"@fastify/static": "^9.0.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@fastify/type-provider-typebox": "^6.1.0",
"@fastify/under-pressure": "^9.0.3",
"close-with-grace": "^2.5.0",
"csv-stringify": "^6.6.0",
"fastify": "^5.8.4",
"fastify-plugin": "^5.1.0",
"knex": "^3.2.6",
"mysql2": "^3.20.0",
"postgrator": "^8.0.0",
"sanitize-filename": "^1.6.3",
"typebox": "^1.1.6"
},
"devDependencies": {
"@types/node": "^25.0.3",
"c8": "^11.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.0",
"fastify-tsconfig": "^3.0.0",
"form-data": "^4.0.5",
"glob": "^11.0.3",
"neostandard": "^0.13.0",
"pino-pretty": "^13.1.3",
"tsx": "^4.21.0",
"typescript": "~6.0.2"
}
}