-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 6 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "voder.ai-website",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Voder pre-launch website - cinematic experience showcasing the future of AI-assisted development",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.build.json && vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=verbose",
"screenshots": "npx playwright install && npx playwright install-deps chromium && playwright test tests/e2e/screenshots.spec.ts --project=chromium --reporter=list",
"screenshots:headed": "playwright test tests/e2e/screenshots.spec.ts --headed --reporter=list",
"e2e": "npx playwright test --reporter=list",
"e2e:headed": "npx playwright test --headed --reporter=list",
"e2e:ci": "npx playwright test --project=chromium tests/e2e/app.spec.ts tests/e2e/closing-moment.spec.ts tests/e2e/fouc-prevention.test.ts --reporter=json --output=test-results/",
"e2e:ci:critical": "npx playwright test --project=chromium tests/e2e/app.spec.ts tests/e2e/closing-moment.spec.ts --reporter=json --output=test-results/",
"e2e:ci:full": "npx playwright test --reporter=json --output=test-results/",
"e2e:ci:post-deploy": "npx playwright test --project=chromium tests/e2e/smoke/smoke-test.spec.ts --reporter=json --output=test-results/",
"e2e:ci:post-deploy-comprehensive": "npx playwright test --project=chromium tests/e2e/app.spec.ts tests/e2e/closing-moment.spec.ts tests/e2e/fouc-prevention.test.ts tests/e2e/functional-layout.test.ts --reporter=json --output=test-results/",
"e2e:ci:prod": "PREVIEW_URL=https://voder.ai playwright test tests/e2e/screenshots.spec.ts --reporter=list",
"e2e:install": "npx playwright install --with-deps",
"clean": "rm -rf dist/ coverage/ .cache/ .vite/ .eslintcache",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0",
"lint:css": "stylelint \"**/*.css\" --ignore-pattern \"**/coverage/**\" --ignore-pattern \"**/dist/**\" --ignore-pattern \"**/build/**\" --ignore-pattern \"**/node_modules/**\" --ignore-pattern \"**/packages/**\" --ignore-pattern \"**/apps/**\"",
"lint:css:fix": "stylelint \"**/*.css\" --fix --ignore-pattern \"**/coverage/**\" --ignore-pattern \"**/dist/**\" --ignore-pattern \"**/build/**\" --ignore-pattern \"**/node_modules/**\" --ignore-pattern \"**/packages/**\" --ignore-pattern \"**/apps/**\"",
"lint:html": "htmlhint \"**/*.html\" --ignore \"**/coverage/**,**/dist/**,**/build/**,**/node_modules/**,**/packages/**,**/apps/**,**/playwright-report/**\"",
"lint:md": "markdownlint-cli2 --config .markdownlint.json README.md docs/decisions/**/*.md docs/E2E-REPRO.md docs/DEVELOPER-SETUP.md specs/**/*.md",
"lint:md:fix": "markdownlint-cli2 --fix --config .markdownlint.json README.md docs/decisions/**/*.md docs/E2E-REPRO.md docs/DEVELOPER-SETUP.md specs/**/*.md",
"verify": "npm run audit:fix && npm run lint:fix && npm run lint:css:fix && npm run lint:md:fix && npm run lint:check && npm run lint:css && npm run lint:html && npm run lint:md && npm run format:check && npm run build && npm run test:ci",
"pre-commit": "npm run audit:fix && npm run lint:fix && npm run lint:css:fix && npm run lint:md:fix && npm run lint:check && npm run lint:css && npm run lint:html && npm run lint:md && npm run format:check && npm run type-check && npm run test:ci",
"docs:setup": "node setup-package-docs.js --all",
"docs:report": "npm run docs:setup && node setup-package-docs.js --report",
"prepare": "node scripts/prepare-libraries.js",
"postinstall": "simple-git-hooks",
"audit:fix": "npm audit fix --package-lock-only --force || npm audit --audit-level=moderate || true"
},
"dependencies": {
"@microsoft/clarity": "^1.0.0",
"gsap": "^3.13.0",
"three": "^0.180.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.56.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.6.0",
"@types/three": "^0.180.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"axe-core": "^4.11.0",
"canvas": "^3.2.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^62.0.0",
"happy-dom": "^20.0.0",
"htmlhint": "^1.6.3",
"jest-axe": "^10.0.0",
"jiti": "^2.5.1",
"jsdom": "^27.0.1",
"markdownlint-cli2": "^0.18.1",
"netlify-cli": "^23.9.3",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"stylelint": "^16.24.0",
"stylelint-config-css-modules": "^4.5.1",
"stylelint-config-standard": "^39.0.0",
"stylelint-order": "^7.0.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vite": "^7.1.5",
"vite-plugin-inline-source": "^4.1.0",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.0.0",
"simple-git-hooks": {
"pre-commit": "npm run lint:check && npm run lint:css && npm run lint:html && npm run lint:md && npm run format:check && npm run type-check && npm run test:ci"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"tmp": "^0.2.5",
"tar": "7.5.2",
"fast-redact": "^3.5.0",
"netlify-cli": {
"fast-redact": "^3.5.0"
},
"@netlify/build": {
"fast-redact": "^3.5.0"
},
"@netlify/edge-bundler": {
"tar": "7.5.2"
},
"@netlify/zip-it-and-ship-it": {
"tar": "7.5.2"
},
"@vercel/nft": {
"tar": "7.5.2"
},
"@mapbox/node-pre-gyp": {
"tar": "7.5.2"
}
},
"license": "UNLICENSED"
}