Update package.json with TypeScript build/dev deps and scripts
This commit is contained in:
parent
1d899a3f18
commit
563c2a73dd
11
package.json
11
package.json
@ -4,7 +4,10 @@
|
|||||||
"description": "Multi-project webhook proxy for incoming webhooks (Square, Stripe, GitHub, etc.) that forwards to Appwrite functions with proper auth headers.",
|
"description": "Multi-project webhook proxy for incoming webhooks (Square, Stripe, GitHub, etc.) that forwards to Appwrite functions with proper auth headers.",
|
||||||
"main": "server.js",
|
"main": "server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node server.js"
|
"build": "tsc",
|
||||||
|
"start": "node server.js",
|
||||||
|
"dev": "tsx watch src/server.ts",
|
||||||
|
"typecheck": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18.0.0"
|
"node": ">=18.0.0"
|
||||||
@ -12,5 +15,11 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"express": "^4.19.2"
|
"express": "^4.19.2"
|
||||||
},
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/express": "^4.17.21",
|
||||||
|
"@types/node": "^20.12.7",
|
||||||
|
"tsx": "^4.7.2",
|
||||||
|
"typescript": "^5.4.5"
|
||||||
|
},
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user