-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.98 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
{
"name": "syncribullet",
"description": "App that mixes your syncs",
"version": "1.0.14",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"prepublish": "rimraf dist; rimraf server",
"build": "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*\"",
"preview": "qwik build preview && vite preview --open",
"start": "ORIGIN=https://56bca7d190fc-syncribullet.baby-beamup.club node server/entry.express",
"start:dev": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.2.10",
"@builder.io/qwik-city": "^1.2.10",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.14",
"@types/eslint": "8.44.1",
"@types/express": "4.17.17",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"autoprefixer": "^10.4.14",
"beamup-cli": "^1.2.4",
"compression": "^1.7.4",
"eslint": "8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-qwik": "^1.2.10",
"postcss": "8.4.27",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.6.4",
"rimraf": "^5.0.1",
"tailwind-material-colors": "^1.0.1",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"undici": "5.22.1",
"vite": "4.4.7",
"vite-tsconfig-paths": "4.2.0"
},
"dependencies": {
"@modular-forms/qwik": "^0.20.2",
"@tdanks2000/anilist-wrapper": "^1.0.15",
"anilist-node": "^1.14.0",
"cors": "^2.8.5",
"express": "4.18.2"
}
}