-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 988 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "fastify-crud-generator",
"version": "1.1.0",
"description": "A plugin to rapidly generate CRUD routes for any entity",
"main": "crud.js",
"scripts": {
"test": "npx tap test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beliven-it/fastify-crud-generator.git"
},
"keywords": [
"fastify",
"plugin",
"crud",
"generator",
"routes"
],
"author": "Beliven",
"license": "MIT",
"bugs": {
"url": "https://github.com/beliven-it/fastify-crud-generator/issues"
},
"homepage": "https://github.com/beliven-it/fastify-crud-generator#readme",
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^4.24.0",
"tap": "^21.0.1"
},
"dependencies": {
"@fastify/error": "^4.0.0"
}
}