-
-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.33 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
{
"name": "myspeed",
"version": "1.0.9",
"private": true,
"type": "module",
"trustedDependencies": [
"@resvg/resvg-js"
],
"scripts": {
"client": "cd client && bun run dev",
"server": "bun run --watch server/index.js",
"build": "bun run generate-migrations && bun run generate-integrations && cd client && bun run build",
"build:binary": "bun run build && mv client/build . && bun run generate-client-embed && bun build --compile --compile-autoload-package-json --external pg-hstore --external pg server/index.js --outfile MySpeed",
"generate-client-embed": "bun run scripts/generate-client-embed.js",
"generate-migrations": "bun run scripts/generate-migrations.js",
"generate-integrations": "bun run scripts/generate-integrations.js",
"dev": "bun run generate-migrations && bun run generate-integrations && bun run server & bun run client"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"bcryptjs": "^3.0.3",
"cron-parser": "^5.5.0",
"cron-validator": "^1.4.0",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"express": "^5.2.1",
"moment-timezone": "^0.6.2",
"mysql2": "^3.22.3",
"node-schedule": "^2.1.1",
"prom-client": "^15.1.3",
"satori": "^0.26.0",
"satori-html": "^0.3.2",
"sequelize": "^6.37.8"
}
}