-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.38 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
{
"name": "edgekit",
"version": "0.0.1",
"private": true,
"description": "Full-stack task management app built with React, Hono and Cloudflare Workers",
"keywords": [
"cloudflare",
"d1",
"drizzle",
"hono",
"react"
],
"license": "MIT",
"author": "ieuforu",
"type": "module",
"scripts": {
"dev": "pnpm -r --parallel dev",
"dev:web": "pnpm --filter web dev",
"dev:api": "pnpm --filter api dev",
"typecheck": "pnpm -r typecheck",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"deploy:api": "pnpm --filter api deploy",
"deploy:web": "pnpm --filter web build",
"prepare": "husky"
},
"devDependencies": {
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.3",
"@types/better-sqlite3": "^9.6.0",
"@vitest/coverage-v8": "^4.1.10",
"better-sqlite3": "^13.0.3",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.3.0",
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint --fix",
"oxfmt --write"
],
"*.{json,md,css}": [
"oxfmt --write"
]
},
"packageManager": "pnpm@11.20.0"
}