-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.58 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
67
{
"name": "blockend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "vitest",
"lint": "turbo run lint",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "turbo run typecheck",
"validate": "pnpm format:check && pnpm lint && pnpm typecheck",
"prepare": "husky"
},
"keywords": [
"blocks",
"backend",
"hono",
"fastify",
"express",
"backend-blocks",
"nodejs",
"typescript"
],
"author": "codewithnuh",
"license": "MIT",
"packageManager": "pnpm@10.33.2",
"dependencies": {
"prettier": "^3.8.4",
"turbo": "^2.9.18"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^9.39.4",
"@types/express": "^5.0.6",
"@types/node": "^25.9.3",
"@types/supertest": "^7.2.0",
"eslint": "^9.39.4",
"express": "^5.2.1",
"fastify": "^5.10.0",
"fastify-plugin": "^6.0.0",
"globals": "^16.0.0",
"hono": "^4.12.28",
"husky": "^9.1.7",
"ioredis": "^5.11.1",
"lint-staged": "^17.0.7",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"supertest": "^7.2.2",
"typescript-eslint": "^8.61.0",
"vitest": "^1.6.1",
"zod": "^4.4.3"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx,jsx,json,jsonc,md,mdx,yml,yaml,css,scss,html}": [
"prettier --write",
"git add"
],
"*.{js,cjs,mjs,ts,tsx,jsx}": [
"eslint --cache --fix"
]
}
}