-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "@nx/websocket-test",
"version": "0.0.0",
"private": true,
"description": "WebSocket Test Application",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"bun": ">=1.3"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"clean": "sh ./scripts/clean.sh",
"eslint": "eslint --report-unused-disable-directives .",
"lint": "bun run eslint && bun run prettier:cli",
"lint:fix": "bun run eslint --fix && bun run prettier:fix",
"prettier:cli": "prettier \"**/*.{js,ts}\" -l",
"prettier:fix": "bun run prettier:cli --write",
"rebuild": "bun run clean && bun run build",
"preserver:dev": "bun run rebuild",
"server:dev": "NODE_ENV=development bun .",
"server:prod": "NODE_ENV=production bun ."
},
"author": {
"name": "VENIZIA AI Developer",
"email": "developer@venizia.ai",
"url": "https://venizia.ai"
},
"license": "MIT",
"dependencies": {
"@hono/zod-openapi": "^1.2.2",
"@venizia/ignis": "workspace:*",
"@venizia/ignis-boot": "workspace:*",
"@venizia/ignis-helpers": "workspace:*",
"@venizia/ignis-inversion": "workspace:*",
"dotenv-flow": "^4.1.0",
"hono": "^4.12.1",
"ioredis": "^5.9.1",
"lodash": "^4.17.23"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/lodash": "^4.17.23",
"@venizia/dev-configs": "workspace:*",
"eslint": "^9.39.3",
"prettier": "^3.8.1",
"tsc-alias": "^1.8.16",
"typescript": "~5.9.3"
}
}