-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.64 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
{
"name": "gist-backend",
"version": "1.0.0",
"main": "dist/index.js",
"module": "src/index.ts",
"type": "module",
"scripts": {
"build": "bun build src/index.ts src/bucket.ts --outdir=dist --target bun --external farmhash --sourcemap",
"start": "concurrently \"bun run dist/index.js\" \"bun run dist/bucket.js\"",
"dev": "concurrently \"bun run --watch src/index.ts\" \"bun run --watch src/bucket.ts\"",
"lint": "eslint src/**/*.ts --fix",
"seed": "bun run src/seeders/index.ts",
"migrate": "bun run src/migrations/index.ts"
},
"dependencies": {
"@elysiajs/cors": "^1.3.3",
"@handlebars/allow-prototype-access": "^1.0.5",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node-schedule": "^2.1.7",
"@types/nodemailer": "^7.0.1",
"bcryptjs": "^3.0.2",
"crypto": "^1.0.1",
"date-fns": "^4.1.0",
"dotenv": "^17.0.0",
"elysia": "^1.3.5",
"elysia-helmet": "^3.0.0",
"express": "^5.1.0",
"farmhash": "^4.0.2",
"firebase-admin": "12.1.0",
"fluent-ffmpeg": "^2.1.3",
"gist-backend": ".",
"heic-convert": "^2.1.0",
"ioredis": "^5.6.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.14.1",
"node-cache": "^5.1.2",
"node-schedule": "^2.1.1",
"nodemailer": "^7.0.6",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.7",
"sharp": "^0.34.3"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.3",
"@types/heic-convert": "^2.1.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/sequelize": "^4.28.20",
"concurrently": "^9.0.0"
},
"private": true,
"peerDependencies": {
"typescript": "^5"
}
}