forked from thealanreis/qwik-speak-error
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.65 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
{
"name": "my-qwik-basic-starter",
"description": "App with Routing built-in (recommended)",
"engines": {
"node": ">=15.0.0"
},
"private": true,
"scripts": {
"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": "echo 'Run \"npm run qwik add\" to install a server adapter'",
"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",
"qwik-speak-extract": "qwik-speak-extract --supportedLangs=en-US,pt-BR --assetsPath=i18n",
"serve": "node server/entry.express",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "1.0.0",
"@builder.io/qwik-city": "^1.0.0",
"@types/compression": "^1.7.2",
"@types/eslint": "8.37.0",
"@types/express": "4.17.17",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"autoprefixer": "^10.4.14",
"compression": "^1.7.4",
"eslint": "8.39.0",
"eslint-plugin-qwik": "1.0.0",
"express": "4.18.2",
"postcss": "^8.4.23",
"prettier": "2.8.8",
"qwik-speak": "0.12.0",
"tailwindcss": "^3.3.1",
"typescript": "5.0.4",
"undici": "5.22.0",
"vite": "4.3.3",
"vite-tsconfig-paths": "4.2.0"
},
"dependencies": {
}
}