- Add DISCOVERY_LOG_LEVEL=debug - Add DISCOVERY_SHOW_PROGRESS=true - Temporary changes for debugging InitializerProcessor fixes on production
32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"name": "michaelschiemer-frontend",
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.28.0",
|
|
"@babel/preset-env": "^7.28.0",
|
|
"@types/jest": "^29.5.12",
|
|
"babel-jest": "^30.0.5",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"vite": "^6.0.7",
|
|
"vite-plugin-pwa": "^0.21.1"
|
|
},
|
|
"scripts": {
|
|
"test": "jest --passWithNoTests",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:ci": "jest --ci --coverage --watchAll=false",
|
|
"dev": "vite --host",
|
|
"build": "vite build",
|
|
"build:analyze": "vite build --mode analyze",
|
|
"preview": "vite preview",
|
|
"clean": "rm -rf public/assets public/.vite public/sw.js",
|
|
"clean:node_modules": "rm -rf node_modules package-lock.json && npm install",
|
|
"type-check": "tsc --noEmit",
|
|
"lint:js": "eslint resources/js --ext .js,.ts --fix",
|
|
"format": "prettier --write resources/",
|
|
"build:prod": "NODE_ENV=production vite build",
|
|
"serve": "vite preview --host --port 4173"
|
|
}
|
|
}
|