-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.78 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
{
"name": "node-fastify-template",
"version": "1.2.0",
"description": "Node.js API server based on fastify/MongoDB project template.",
"main": "./src/server.js",
"exports": "./src/server.js",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "fastify start --log-level info --pretty-logs --watch src/app.js",
"debug": "fastify start --debug --log-level info --log-level info --pretty-logs --watch src/app.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"unit": "node --test --experimental-test-coverage --test-coverage-lines=100 --test-coverage-branches=100 --test-coverage-functions=100 --test-coverage-include=src/**",
"coverage:lcov": "node --run unit -- --test-reporter=lcov --test-reporter-destination=lcov.info",
"test": "node --run lint && node --run unit",
"license-checker": "npx license-checker --production --onlyAllow='Apache-2.0;Apache-2.0 WITH LLVM-exception;MIT;ISC;BSD-3-Clause;BSD-2-Clause' --excludePackages '[email protected];[email protected];[email protected]'",
"super-linter": "docker run -e RUN_LOCAL=true -v $PWD:/tmp/lint github/super-linter",
"mega-linter": "npx [email protected] --container-name=mega-linter",
"prepare": "husky"
},
"repository": "github:mihaur/node-fastify-template",
"keywords": [
"node",
"nodejs",
"API",
"backend",
"server",
"fastify",
"mongo",
"mongodb",
"template",
"boilerplate"
],
"author": "Miha Urbanija <[email protected]>",
"license": "Apache-2.0 WITH LLVM-exception",
"devDependencies": {
"eslint": "^9.15.0",
"husky": "^9.1.7",
"neostandard": "^0.11.8"
},
"dependencies": {
"fastify": "^5.1.0",
"fastify-cli": "^7.0.1",
"@fastify/env": "^5.0.1",
"@fastify/mongodb": "^9.0.1"
}
}