-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.7 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
68
69
70
71
72
73
74
75
76
77
78
{
"type": "module",
"name": "@code-glue/server",
"description": "Server component",
"scripts": {
"start": "SERVE_STATIC=true tsx src/app/environments/local/main.mts",
"start:inspect": "SERVE_STATIC=true tsx --inspect src/app/environments/local/main.mts",
"start:brk": "SERVE_STATIC=true tsx --inspect-brk src/app/environments/local/main.mts",
"build": "tsc -p tsconfig.build.json",
"test": "./scripts/test.sh",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.{ts,mts,json,md}\"",
"typecheck": "tsc -p tsconfig.json --noEmit",
"act": "act -j lint-and-build",
"db:generate:sqlite": "DATABASE_TYPE=sqlite drizzle-kit generate",
"db:generate:postgresql": "DATABASE_TYPE=postgresql drizzle-kit generate",
"db:generate:mysql": "DATABASE_TYPE=mysql drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"volta": {
"extends": "../../package.json"
},
"dependencies": {
"@digital-alchemy/automation": "^25.11.18",
"@digital-alchemy/core": "^25.11.19",
"@digital-alchemy/hass": "^25.11.16",
"@digital-alchemy/synapse": "^25.8.21",
"@digital-alchemy/terminal": "^24.11.1",
"@digital-alchemy/type-writer": "^25.11.16",
"@fastify/cors": "^11.1.0",
"@fastify/helmet": "^13.0.1",
"@fastify/static": "^8.2.0",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"@fastify/type-provider-typebox": "^6.1.0",
"@sinclair/typebox": "^0.34.41",
"better-sqlite3": "^11.9.0",
"chalk": "^5.4.1",
"dayjs": "^1.11.13",
"drizzle-orm": "^0.44.5",
"express": "^5.1.0",
"fastify": "^5.5.0",
"http-proxy-middleware": "^3.0.5",
"ioredis": "^5.7.0",
"mysql2": "^3.14.3",
"postgres": "^3.4.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.17.5",
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "8.26.1",
"@typescript-eslint/parser": "8.26.1",
"drizzle-kit": "^0.31.4",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.19.1",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^60.0.0",
"globals": "^15.12.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"type-fest": "^4.41.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vitest": "^3.2.4"
}
}