This repository has been archived by the owner on Oct 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "fastify-starter",
"version": "1.0.0",
"type": "module",
"engines": {
"node": "18.*"
},
"main": "build/start.js",
"repository": "[email protected]:Goathy/fastify-starter.git",
"author": "Jakub Gałecki <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"build:ts": "tsc -p ./tsconfig.build.json",
"build": "run-s lint build:ts",
"test": "NODE_ENV=\"test\" tap --node-arg=--loader=ts-node/esm",
"start": "ts-node --esm ./src/start.ts",
"start:dev": "nodemon ./src/start.ts"
},
"devDependencies": {
"@fastify/one-line-logger": "^1.1.1",
"@fastify/type-provider-typebox": "^2.4.0",
"@types/node": "^18.11.12",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"fastify-tsconfig": "^1.0.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"tap": "^16.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@fastify/env": "^4.2.0",
"@fastify/request-context": "^4.2.0",
"@fastify/swagger": "^8.3.0",
"@fastify/swagger-ui": "^1.3.0",
"@sinclair/typebox": "^0.25.12",
"ajv-formats": "^2.1.1",
"fastify": "^4.10.2",
"fastify-plugin": "^4.4.0",
"nanoid": "^4.0.0"
}
}