forked from gnmyt/MySpeed
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.61 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": "myspeed",
"version": "1.5.2",
"private": true,
"type": "module",
"engines": {
"node": ">=22.5"
},
"trustedDependencies": [
"@resvg/resvg-js"
],
"scripts": {
"test": "node --import ./tests/helpers/register.mjs --test \"tests/server/**/*.test.js\" \"tests/client/**/*.test.js\"",
"lint": "eslint .",
"test:integration": "node --import ./tests/helpers/register.mjs --test \"tests/integration/**/*.test.js\"",
"test:all": "node --import ./tests/helpers/register.mjs --test \"tests/**/*.test.js\"",
"test:coverage": "node --import ./tests/helpers/register.mjs --test --experimental-test-coverage --test-coverage-exclude=\"**/*.sass\" --test-coverage-exclude=\"**/*.scss\" --test-coverage-exclude=\"**/*.css\" --test-coverage-exclude=\"**/*.{png,webp,jpg,jpeg,gif,svg}\" \"tests/**/*.test.js\"",
"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 && node scripts/move-client-build.js && bun run generate-client-embed && bun build --compile --compile-autoload-package-json --external pg-hstore --external pg server/index.js --outfile MySpeed",
"build:binary:baseline": "bun run build && node scripts/move-client-build.js && bun run generate-client-embed && bun build --compile --compile-autoload-package-json --external pg-hstore --external pg --target=bun-linux-x64-baseline server/index.js --outfile MySpeed-linux-x64-baseline",
"generate-client-embed": "node scripts/generate-client-embed.js",
"generate-migrations": "node scripts/generate-migrations.js",
"generate-integrations": "node scripts/generate-integrations.js",
"dev": "bun run generate-migrations && bun run generate-integrations && concurrently -k -n server,client \"bun run server\" \"bun run client\""
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"bcryptjs": "^3.0.3",
"cron-parser": "^5.10.0",
"cron-validator": "^1.4.0",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"express": "^5.2.1",
"htm": "^3.1.1",
"moment-timezone": "^0.6.3",
"mysql2": "^3.24.2",
"node-schedule": "^2.1.1",
"nodemailer": "^9.1.0",
"prom-client": "^15.1.3",
"satori": "^0.33.4",
"sequelize": "^6.37.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"concurrently": "^10.0.5",
"esbuild": "^0.28.2",
"eslint": "^10.9.1",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.11.0",
"jsdom": "^30.0.1",
"sass": "^1.103.1"
}
}