mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 00:05:36 +02:00
## Description **What(what issue does this code solve/what feature does it add):** Add a qwik project where we can add API(s) and a frontend which will be used to review and deploy to AWS our docker containers for testing. **How(how does it solve it):** 1. Initialise a qwik project at `apps/www` ## Required Checklist: - [ ] I have added any necessary documentation and comments in my code (where appropriate) - [ ] I have added tests to make sure my code runs in all contexts ## Further comments
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"name": "qwik-project-name",
|
|
"scripts": {
|
|
"build": "qwik build",
|
|
"build.client": "vite build",
|
|
"build.preview": "vite build --ssr src/entry.preview.tsx",
|
|
"build.types": "tsc --incremental --noEmit",
|
|
"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": "vite --open --mode ssr",
|
|
"deploy": "echo 'Run \"npm run qwik add\" to install a server adapter'",
|
|
"qwik": "qwik"
|
|
},
|
|
"devDependencies": {
|
|
"@builder.io/qwik": "^1.5.1",
|
|
"@builder.io/qwik-city": "^1.5.1",
|
|
"@types/eslint": "^8.56.5",
|
|
"@types/node": "^20.11.24",
|
|
"@typescript-eslint/eslint-plugin": "^7.1.0",
|
|
"@typescript-eslint/parser": "^7.1.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-qwik": "^1.5.1",
|
|
"prettier": "^3.2.5",
|
|
"typescript": "5.3.3",
|
|
"undici": "*",
|
|
"vite": "^5.1.4",
|
|
"vite-tsconfig-paths": "^4.2.1"
|
|
},
|
|
"trustedDependencies": [
|
|
"sharp"
|
|
],
|
|
"trustedDependencies-annotation": "Needed for bun to allow running install scripts",
|
|
"engines": {
|
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
|
"npm": ">=10.0.0",
|
|
"pnpm": ">=8.0.0",
|
|
"yarn": ">=3.0.0"
|
|
},
|
|
"engines-annotation": "Mostly required by sharp which needs a Node-API v9 compatible runtime",
|
|
"private": true,
|
|
"type": "module"
|
|
}
|