-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.01 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "bootifyjs",
"version": "2.1.2",
"keywords": [],
"author": "Piyush Priyadarshi",
"license": "ISC",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"build:binary": "bun build --compile --minify-whitespace --minify-syntax --target bun --outfile server src/examples/index.ts",
"build:binary:cluster": "bun build --compile --minify-whitespace --minify-syntax --target bun --outfile server src/cluster.ts",
"build:binary:linux": "bun build --compile --minify-whitespace --minify-syntax --target bun-linux-x64 --outfile server src/examples/index.ts",
"docker:build": "docker build -t bootifyjs .",
"docker:build:cluster": "docker build -t bootifyjs:cluster -f Dockerfile.cluster .",
"docker:run": "docker run -p 8080:8080 --env-file .env bootifyjs",
"prepublishOnly": "npm run build",
"dev": "nodemon --watch src --exec ts-node src/examples/index.ts"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"require": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./events": {
"import": "./dist/events/index.js",
"require": "./dist/events/index.js",
"types": "./dist/events/index.d.ts"
},
"./cache": {
"import": "./dist/core/cache/index.js",
"require": "./dist/core/cache/index.js",
"types": "./dist/core/cache/index.d.ts"
},
"./logging": {
"import": "./dist/logging/index.js",
"require": "./dist/logging/index.js",
"types": "./dist/logging/index.d.ts"
},
"./config": {
"import": "./dist/config/index.js",
"require": "./dist/config/index.js",
"types": "./dist/config/index.d.ts"
},
"./scheduling": {
"import": "./dist/scheduling/index.js",
"require": "./dist/scheduling/index.js",
"types": "./dist/scheduling/index.d.ts"
}
},
"dependencies": {
"@clickhouse/client": "^1.12.0",
"@fastify/cookie": "^11.0.2",
"@types/jsonwebtoken": "^9.0.10",
"fastify": "^5.4.0",
"jsonwebtoken": "^9.0.2",
"posthog-node": "^5.9.3",
"reflect-metadata": "^0.2.2",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"peerDependencies": {
"node-cron": "^3.0.0"
},
"peerDependenciesMeta": {
"node-cron": {
"optional": true
}
},
"devDependencies": {
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"@types/dotenv": "^6.1.1",
"@types/node": "^24.1.0",
"@types/node-cron": "^3.0.11",
"@types/validate-npm-package-name": "^4.0.2",
"dotenv": "^17.2.1",
"node-cron": "^3.0.3",
"nodemon": "^3.1.10",
"pino-pretty": "^13.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/piyushpriyadarshi/bootifyjs.git"
}
}