-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1023 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1023 Bytes
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
{
"name": "gateherald",
"version": "1.0.0",
"description": "A webhook gateway that receives inbound events, transforms payloads through a template-driven mapper, and forwards to one or more target endpoints.",
"type": "module",
"main": "index.js",
"scripts": {
"build:css": "node scripts/build-css.js",
"build:docs": "node scripts/build-docs-pages.js",
"db:migrate": "node scripts/db-migrate.js",
"db:reset": "node scripts/db-reset.js",
"db:seed": "node scripts/db-seed.js",
"start": "cross-env NODE_ENV=development node index.js",
"start:prod": "cross-env NODE_ENV=production node index.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^17.3.1",
"express": "^5.2.1",
"marked": "^17.0.5",
"sequelize": "^6.37.8",
"sqlite3": "^6.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"autoprefixer": "^10.4.27",
"cross-env": "^10.1.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2"
}
}