-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.53 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.53 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "syncribullet",
"description": "App that mixes your syncs",
"author": "aliyss",
"version": "2.0.5",
"engines": {
"node": "20.x"
},
"private": true,
"type": "module",
"scripts": {
"build": "VITE_CJS_TRACE=true qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/express/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "beamup",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"prepublish": "rimraf dist; rimraf server",
"preview": "qwik build preview && vite preview --open",
"serve": "node server/entry.express",
"start": "ORIGIN=https://56bca7d190fc-syncribullet.baby-beamup.club node server/entry.express",
"start:dev": "vite --open --mode ssr",
"start:dev-logging": "NODE_OPTIONS=\"--import ./instrument.mjs\" npm run start:dev",
"start:local": "ORIGIN=http://127.0.0.1:3000 node server/entry.express",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.13.0",
"@builder.io/qwik-city": "^1.13.0",
"@modular-forms/qwik": "^0.29.1",
"@tailwindcss/vite": "^4.1.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.14",
"@types/eslint": "8.56.10",
"@types/express": "^4.17.19",
"@types/node": "20.14.11",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"autoprefixer": "^10.4.14",
"beamup-cli": "^1.2.4",
"compression": "^1.7.4",
"dotenv": "^16.3.2",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-qwik": "^1.13.0",
"postcss": "8.4.27",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"rimraf": "^5.0.1",
"tailwindcss": "^4.1.7",
"typescript": "5.4.5",
"vite": "5.3.5",
"vite-tsconfig-paths": "^4.2.1"
},
"dependencies": {
"undici": "*",
"@sentry/node": "^9.3.0",
"@sentry/profiling-node": "^9.3.0",
"@sentry/vite-plugin": "^3.2.1",
"@tdanks2000/anilist-wrapper": "^1.0.15",
"anilist-node": "^1.14.0",
"axios": "^1.7.9",
"axios-cache-interceptor": "^1.6.2",
"cors": "^2.8.5",
"express": "4.20.0",
"lz-string": "^1.5.0",
"node-fpe": "^2.0.3",
"pako": "^1.0.6"
}
}