-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.09 KB
/
package.json
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": "webjam",
"description": "A straightforward web framework build for common tasks.",
"version": "1994.1.21",
"private": false,
"homepage": "https://github.com/Leask/webjam",
"main": "index.mjs",
"type": "module",
"engines": {
"node": ">=18.x"
},
"scripts": {
"start": "node --no-warnings main.mjs",
"debug": "node --no-warnings --inspect --trace-warnings debug.mjs",
"test": "node --no-warnings --trace-warnings test.mjs",
"updep": "npx npm-check-updates -u && npm install",
"gitsync": "( git commit -am \"Released @ `date`\" || true ) && git pull && git push",
"build": "npm run updep && ( git commit -am 'update dependencies' || true )",
"pub": "npm run build && npm run gitsync",
"beta": "npm publish --tag beta"
},
"author": "Leask Wong <i@leaskh.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Leask/webjam"
},
"dependencies": {
"@koa/multer": "^3.0.2",
"@koa/router": "^13.0.0",
"acme-client": "^5.4.0",
"fast-geoip": "^1.1.88",
"http-status": "^1.7.4",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-session": "^6.4.0",
"koa-static": "^5.0.0",
"koa-useragent": "^4.1.0",
"multer": "^1.4.4",
"utilitas": "^1997.1.11"
},
"devDependencies": {
"@google-cloud/storage": "^7.12.1",
"@sentry/node": "^8.28.0",
"@sentry/profiling-node": "^8.28.0",
"@sentry/utils": "^8.28.0",
"domain": "^0.0.1",
"form-data": "^4.0.0",
"ioredis": "^5.4.1",
"koa-passport": "^6.0.0",
"mailgun.js": "^10.2.3",
"mysql2": "^3.11.0",
"node-mailjet": "^6.0.6",
"openai": "^4.58.1",
"passport-twitter": "^1.0.4",
"pg": "^8.12.0",
"pgvector": "^0.2.0",
"ping": "^0.4.4",
"telegraf": "^4.16.3",
"telesignsdk": "^3.0.0",
"twilio": "^5.3.0"
}
}