-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
27 lines (27 loc) · 922 Bytes
/
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
{
"name": "swaggerpetstore",
"description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "fastify start --options index.js",
"test": "c8 node --test test/test-*.js",
"dev": "fastify start -l info -P --options index.js"
},
"directories": {
"test": "test"
},
"dependencies": {
"fastify-plugin": "^5.0.1",
"@seriousme/openapi-schema-validator": "^2.4.0",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"fastify-openapi-glue": "^4.8.1"
},
"devDependencies": {
"fastify": "^5.2.2",
"fastify-cli": "^7.3.0",
"c8": "^10.1.3",
"@biomejs/biome": "^1.9.4"
}
}