-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.26 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.26 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
{
"name": "@nx/vert",
"version": "0.0.0",
"private": true,
"description": "MC Vert",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"bun": ">=1.3"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json && cp -r src/security dist/",
"clean": "sh ./scripts/clean.sh",
"compile:linux": "bun build --compile --minify --sourcemap --target=bun-linux-x64 ./src/index.ts --outfile ./dist/vert",
"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",
"migrate:dev": "NODE_ENV=development drizzle-kit migrate --config=src/migration.ts",
"migrate:push": "NODE_ENV=development drizzle-kit push --config=src/migration.ts",
"migrate:generate": "NODE_ENV=development drizzle-kit generate --config=src/migration.ts",
"preserver:dev": "bun run rebuild",
"seed:authz": "NODE_ENV=development bun run scripts/seed-authz-test-data.ts",
"test:authz": "bash scripts/test-authorization.sh",
"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",
"@scalar/hono-api-reference": "^0.9.44",
"@venizia/ignis": "workspace:*",
"@venizia/ignis-boot": "workspace:*",
"@venizia/ignis-helpers": "workspace:*",
"@venizia/ignis-inversion": "workspace:*",
"bcrypt": "^6.0.0",
"dotenv-flow": "^4.1.0",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"hono": "^4.12.1",
"ioredis": "5.9.3",
"lodash": "^4.17.23",
"pg": "^8.18.0",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/bun": "^1.3.9",
"@types/lodash": "^4.17.23",
"@types/pg": "^8.16.0",
"@venizia/dev-configs": "workspace:*",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.3",
"prettier": "^3.8.1",
"tsc-alias": "^1.8.16",
"typescript": "~5.9.3"
}
}