-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.78 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
{
"name": "slide-roulette",
"description": "A slide roulette app to test your improvising skills!",
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"engines-annotation": "Mostly required by sharp which needs a Node-API v9 compatible runtime",
"private": false,
"trustedDependencies": [
"sharp"
],
"trustedDependencies-annotation": "Needed for bun to allow running install scripts",
"type": "module",
"scripts": {
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adapters/vercel-edge/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "vercel deploy",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"preview": "qwik build preview && vite preview --open",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "^1.19.0",
"@builder.io/qwik-city": "^1.19.0",
"@modular-forms/qwik": "^0.29.1",
"@qwikest/icons": "^0.0.13",
"@types/canvas-confetti": "^1.9.0",
"@types/eslint": "^9.6.1",
"@types/node": "^20.19.33",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.1",
"eslint-plugin-qwik": "^1.19.0",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"typescript": "^5.4.5",
"undici": "^7.22.0",
"vercel": "^41.7.8",
"vite": "^5.4.21",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"canvas-confetti": "^1.9.4",
"qwik": "^1.0.57"
}
}