forked from 21gifts/api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "@21gifts/api",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Backend service + canonical project docs for 21.gifts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/21gifts/api.git"
},
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun src/index.ts",
"build": "bun build src/index.ts --target=bun --outdir=dist",
"typecheck": "tsc --noEmit",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"handbook:check": "node scripts/check-handbook.mjs",
"e2e:check": "node scripts/check-e2e.mjs",
"e2e": "playwright test"
},
"dependencies": {
"@simplewebauthn/server": "^13.2.1",
"hono": "^4.6.14",
"light-bolt11-decoder": "^3.2.0",
"nostr-tools": "^2.15.0",
"web-push": "^3.6.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.62.1",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.2",
"@types/web-push": "^3.6.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-plugin-tsdoc": "^0.4.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vitest": "^2.1.8"
},
"engines": {
"bun": ">=1.3"
}
}