-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 995 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 995 Bytes
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
{
"name": "fastify-light-ddd",
"description": "Fastify plugin with light DDD approach",
"version": "1.0.5",
"license": "MIT",
"author": "Aliaksandr <plcgi1@gmail.com>",
"keywords": ["ddd", "fastify", "fastify-plugin"],
"repository": "git@github.com:plcgi1/fastify-light-ddd.git",
"main": "index.js",
"homepage": "https://github.com/plcgi1/fastify-light-ddd",
"scripts": {
"start": "node index.js",
"prettier": "prettier './**/*.js'",
"prettier:check": "yarn prettier --check",
"prettier:fix": "yarn prettier --write",
"lint:js:fix": "eslint . --fix",
"lint:fix": "yarn lint:js:fix && yarn prettier:fix",
"test": "NODE_ENV=test node test/index.js"
},
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"fastify": "^3.20.2",
"prettier": "^2.3.2",
"tap": "^15.0.9"
}
}