-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.61 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
{
"name": "garden-gate",
"version": "0.0.1",
"type": "module",
"description": "Door authorizer built with Elysia, running on a Raspberry Pi behind a trusted network.",
"main": "src/main.ts",
"scripts": {
"build": "tsup src/index.ts src/simulator.ts --format esm --clean",
"test": "vitest",
"qa:garden-gate": "env GARDEN_GATE_CONFIG_PATH=config.example.json PORT=3000 GARDEN_GATE_ALLOW_TEST_TOKEN=1 node dist/index.js",
"qa:simulator1": "env PORT=3331 node dist/simulator.js",
"qa:simulator2": "env PORT=3332 node dist/simulator.js",
"qa": "concurrently \"npm:qa:*\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bogeychan/elysia-polyfills": "^0.5.3",
"@elysiajs/eden": "0.5.6",
"@elysiajs/static": "^0.5.3",
"@sinclair/typebox": "^0.29.6",
"better-sqlite3": "^8.5.0",
"bson-objectid": "^2.0.4",
"digest-fetch": "^3.1.0",
"elysia": "^0.5.23",
"http-auth-utils": "^4.0.0",
"jose": "^4.14.4",
"jwt-promisify": "^1.1.7",
"node-fetch": "^3.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.0",
"@types/better-sqlite3": "^7.6.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.2",
"axios": "^1.4.0",
"bun-types": "^0.6.14",
"concurrently": "^8.2.0",
"prettier": "^3.0.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"wait-on": "^7.0.1"
},
"packageManager": "[email protected]"
}