-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.07 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.07 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
{
"name": "devatlas",
"devDependencies": {
"@builder.io/qwik": "^1.17.0",
"@builder.io/qwik-city": "^1.17.0",
"@builder.io/qwik-react": "^0.5.7",
"@cloudflare/workers-types": "^4.20251014.0",
"@eslint/js": "latest",
"@qwik-ui/headless": "^0.7.3",
"@tailwindcss/postcss": "^4.1.16",
"@types/node": "^24.9.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"autoprefixer": "^10.4.21",
"elkjs": "^0.11.0",
"eslint": "9.32.0",
"eslint-plugin-qwik": "^1.17.0",
"globals": "16.3.0",
"lucide-qwik": "^1.0.0",
"postcss": "^8.5.6",
"prettier": "3.6.2",
"reactflow": "^11.11.4",
"tailwindcss": "^4.1.16",
"tsx": "^4.20.6",
"typescript": "5.4.5",
"typescript-eslint": "8.38.0",
"typescript-plugin-css-modules": "latest",
"undici": "*",
"vite": "7.1.7",
"vite-tsconfig-paths": "^4.2.1",
"wrangler": "^3.0.0"
},
"description": "Demo app with sample routes",
"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": true,
"scripts": {
"build": "bun run build:content && qwik build",
"build:content": "tsx scripts/build-roadmaps.ts",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "qwik check-client src dist && vite build -c adapters/cloudflare-pages/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "bun run build && wrangler deploy",
"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": "bun run build && wrangler dev",
"serve": "wrangler pages dev ./dist --compatibility-flags=nodejs_als",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"cf-typegen": "wrangler types",
"validate:content": "tsx scripts/validate-content.ts"
},
"type": "module",
"dependencies": {
"clsx": "^2.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.3.1"
}
}