This repository was archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.05 KB
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
{
"name": "fastify-awesome",
"version": "1.0.0",
"description": "fastify-awesome template",
"type": "module",
"keywords": [],
"license": "MIT",
"homepage": "https://github.com/crashmax-dev/fastify-awesome#readme",
"bugs": {
"url": "https://github.com/crashmax-dev/fastify-awesome/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crashmax-dev/fastify-awesome.git"
},
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/app.js",
"dev": "npm run prebuild && tsc-watch --compiler typescript/bin/tsc -p tsconfig.build.json --onSuccess \"cross-env NODE_ENV=development node -r tsconfig-paths/register --inspect dist/app.js\"",
"build": "tsc -p tsconfig.build.json",
"test": "tsc -p tsconfig.build.json && tap --node-arg=--loader=ts-node/esm --node-arg=--no-warnings",
"lint": "eslint --ext ts .",
"lint:fix": "eslint --fix --ext ts .",
"prebuild": "del-cli dist",
"new": "cross-env HYGEN_TMPLS=generators hygen new",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/cookie": "^6.0.0",
"@fastify/sensible": "^4.1.0",
"@fastify/static": "^6.4.0",
"@fastify/swagger": "^7.1.0",
"@prisma/client": "^3.14.0",
"dotenv": "^16.0.1",
"fastify": "^4.0.0-rc.4",
"fastify-plugin": "^3.0.1",
"fastify-zod": "^0.0.2",
"pino-pretty": "^8.0.0",
"zod": "^3.17.3",
"zod-to-json-schema": "^3.17.0"
},
"devDependencies": {
"@crashmax/eslint-config": "^1.1.0",
"@sindresorhus/tsconfig": "^2.0.0",
"@types/node": "^17.0.38",
"@types/tap": "^15.0.7",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"husky": "^8.0.1",
"hygen": "^6.2.4",
"prisma": "^3.14.0",
"tap": "^16.2.0",
"ts-node": "^10.8.0",
"tsc-watch": "^5.0.3",
"tsconfig-paths": "^4.0.0",
"tsx": "^3.4.2",
"typescript": "^4.7.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}