-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "fastify-example",
"version": "1.0.0",
"private": true,
"description": "Example app with fastify",
"license": "GPL-3.0",
"author": "Jaime Leonardo Suncin Cruz <[email protected]>",
"main": "src/app.js",
"type": "module",
"engines": {
"node": ">=14.13.0"
},
"scripts": {
"dev": "fastify start -w --ignore-watch='db.json e2e test .vscode' -l info -P src/app.js",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky install",
"start": "fastify start -l info src/app.js",
"start:e2e": "server-test 'fastify start src/app.js' http-get:https://localhost:3000 test:e2e",
"test": "ava test/**/*.test.js",
"test:coverage": "c8 ava test/**/*.test.js",
"test:e2e": "ava e2e/**/*.spec.js",
"test:watch": "npm t -- --watch"
},
"keywords": [
"fastify"
],
"dependencies": {
"fastify": "^3.22.0",
"fastify-autoload": "^3.9.0",
"fastify-cli": "^2.13.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.1",
"lowdb": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"ava": "^3.15.0",
"c8": "^7.9.0",
"devmoji": "^2.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-ava": "^13.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-unicorn": "^36.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"pactum": "^3.0.20",
"prettier": "^2.4.1",
"prettier-plugin-package": "^1.3.0",
"start-server-and-test": "^1.14.0"
},
"ava": {
"ignoredByWatcher": [
"db.json",
".vscode"
]
}
}