## 1.0.0 (2026-02-23) ### Features * **api:** add backend api with express and sqlite ([00af886](00af8862d3)) * **api:** add initial schema migration ([3b0d98f](3b0d98f15c)) * **api:** add knex configuration ([7e766c5](7e766c5229)) * **api:** add swagger docs route ([736fefb](736fefbdc9)) * **api:** register swagger docs route ([4c0f53a](4c0f53a3e3)) * **ci:** add bundlesize configuration ([dee36da](dee36dafd3)) * **ci:** add commitlint validation to ci workflow ([1541212](154121297b)) * **ci:** add coverage configuration ([278082d](278082d322)) * **ci:** add gitleaks configuration ([32f3221](32f3221215)) * **ci:** add gitleaks to pre-commit hook ([c18410b](c18410bf5e)) * **ci:** add lighthouse ci configuration ([f6f2dba](f6f2dba9e0)) * **ci:** add nightly build workflow ([5b56edd](5b56edddb2)) * **ci:** add quality gates to ci workflow ([963b8ec](963b8eccf8)) * **ci:** add staging deployment workflow ([f5a00d3](f5a00d356a)) * **docker:** add multi-platform build configuration ([6b7eba9](6b7eba99d4)) * **ui:** add cv application frontend and configuration ([7f06ee7](7f06ee7f53)) ### Bug Fixes * **ci:** Set node versions in ci ([60d0aa5](60d0aa5ae2)) * **ci:** use lts version for ci ([cd22a97](cd22a970cb)) * **ci:** use POSIX-compatible syntax in pre-commit hook ([c240aa3](c240aa3641)) ### Documentation * add comprehensive release engineering documentation ([c8816c4](c8816c4f36)) * add gitleaks setup and api docs info ([cbf4090](cbf40908a6)) * add initial changelog ([e209d6e](e209d6e241)) * add release engineering design document ([1741fe1](1741fe1ca1)) * add release engineering implementation plan ([b3f2919](b3f2919791)) * add release process documentation ([f544577](f5445770ee)) * **api:** add openapi docs to auth routes ([8a22e4b](8a22e4b120)) * **release:** add devops features design document ([252afb7](252afb7e9f)) * **release:** add devops features implementation plan ([162ddb6](162ddb67dd)) * **release:** add link to release engineering documentation ([950d812](950d812159)) * **release:** remove inline markdownlint disable comment ([31d5810](31d58103fd)) * **ui:** add open source documentation files ([15a5c0a](15a5c0a59c))
75 lines
2.1 KiB
JSON
75 lines
2.1 KiB
JSON
{
|
|
"name": "cv-app",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:integration": "vitest run tests/integration",
|
|
"test:regression": "vitest run tests/regression --update",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:perf": "k6 run tests/performance/k6/load.js",
|
|
"test:lighthouse": "lhci autorun --config tests/performance/lighthouserc.js",
|
|
"prepare": "husky",
|
|
"bundle:check": "npm run build && bundlesize"
|
|
},
|
|
"bundlesize": [
|
|
{
|
|
"path": "./dist/assets/*.js",
|
|
"maxSize": "500kb"
|
|
},
|
|
{
|
|
"path": "./dist/assets/*.css",
|
|
"maxSize": "100kb"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"framer-motion": "^12.34.1",
|
|
"lucide-react": "^0.574.0",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"react-router-dom": "^7.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^20.4.2",
|
|
"@commitlint/config-conventional": "^20.4.2",
|
|
"@eslint/js": "^9.39.1",
|
|
"@lhci/cli": "^0.15.1",
|
|
"@playwright/test": "^1.58.2",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/github": "^12.0.6",
|
|
"@tailwindcss/vite": "^4.1.18",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^5.1.1",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"autoprefixer": "^10.4.24",
|
|
"better-sqlite3": "^12.6.2",
|
|
"bundlesize": "^0.18.2",
|
|
"cors": "^2.8.6",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
"express": "^5.2.1",
|
|
"globals": "^16.5.0",
|
|
"husky": "^9.1.7",
|
|
"jsdom": "^28.1.0",
|
|
"postcss": "^8.5.6",
|
|
"semantic-release": "^25.0.3",
|
|
"supertest": "^7.2.2",
|
|
"tailwindcss": "^4.1.18",
|
|
"vite": "^7.3.1",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|