forked from encode42/flags.sh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "flags.sh",
"private": true,
"module": "",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"generate": "esno lib",
"build": "qwik build",
"build.client": "vite build",
"build.preview": "vite build --ssr src/entry.preview.tsx",
"build.server": "vite build -c adaptors/cloudflare-pages/vite.config.ts",
"build.types": "tsc --incremental --noEmit",
"deploy": "wrangler pages dev ./dist",
"dev": "vite --mode ssr",
"preview": "qwik build preview && vite preview"
},
"dependencies": {
"@builder.io/qwik": "0.16.2",
"@builder.io/qwik-city": "0.1.0-beta9",
"@fontsource/montserrat": "^4.5.14",
"@paralleldrive/cuid2": "^2.0.1",
"native-file-system-adapter": "^3.0.0",
"node-fetch": "3.3.0",
"qwik-speak": "^0.5.0",
"typescript": "4.9.5",
"undici": "5.16.0",
"vite": "4.0.4",
"vite-tsconfig-paths": "4.0.5",
"zod": "^3.20.2"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.16.0",
"@html-eslint/parser": "^0.16.0",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"eslint": "8.33.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-jsx-secure-form": "^0.0.5",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-qwik": "^0.16.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-security": "^1.7.0",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-xss": "^0.1.12",
"esno": "^0.16.3",
"stylelint": "^14.16.1",
"stylelint-a11y": "^1.2.3",
"stylelint-color-format": "^1.1.0",
"stylelint-config-standard": "^29.0.0",
"wrangler": "^2.9.0"
}
}