-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "fastify-reverse-routes",
"version": "3.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dimonnwc3/fastify-reverse-routes.git"
},
"bugs": {
"url": "https://github.com/dimonnwc3/fastify-reverse-routes/issues"
},
"homepage": "https://github.com/dimonnwc3/fastify-reverse-routes#readme",
"keywords": [
"fastify",
"reverse",
"router",
"reverse-routes",
"named-routes"
],
"author": "Dmitrii Solovev <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint \"**/*.js\"",
"format": "prettier --write \"**/*.js\"",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch"
},
"prettier": {
"semi": false,
"trailingComma": "all"
},
"jest": {
"bail": true,
"verbose": true,
"testEnvironment": "node",
"coverageReporters": [
"text"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"jest",
"git add"
]
},
"eslintConfig": {
"root": true,
"extends": [
"standard",
"prettier"
],
"env": {
"jest": true,
"node": true
}
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"path-to-regexp": "^6.2.0"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^3.15.0",
"husky": "^4.0.7",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"prettier": "^2.2.1"
}
}