-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 5.5 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 5.5 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
{
"name": "reactforge-ai-skills-demo",
"private": true,
"version": "0.0.0",
"description": "Demo app showing reactforge-ai-skills scripts in action \u2014 accessibility, performance, duplicate detection, TypeScript generation",
"type": "module",
"scripts": {
"=============== DEVELOPMENT ===============": "",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "vite preview --port 3000",
"=============== TESTING ===============": "",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"=============== CODE QUALITY ===============": "",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,scss,json,md}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,css,scss,json,md}\"",
"=============== DEPENDENCY MANAGEMENT ===============": "",
"deps:check": "node node_modules/reactforge-ai-skills/scripts/dependency-manager.cjs",
"deps:dry-run": "node node_modules/reactforge-ai-skills/scripts/dependency-manager.cjs --dry-run",
"deps:skip-tests": "node scripts/dependency-manager.cjs --skip-tests",
"deps:audit": "npm audit",
"deps:outdated": "npm outdated",
"=============== DUPLICATE CODE & REFACTORING ===============": "",
"detect:duplicates": "node node_modules/reactforge-ai-skills/scripts/detect-duplicates.cjs",
"detect:duplicates:report": "node node_modules/reactforge-ai-skills/scripts/generate-duplication-report.cjs",
"detect:unused-imports": "node node_modules/reactforge-ai-skills/scripts/detect-unused-imports.cjs",
"detect:unused-css": "node node_modules/reactforge-ai-skills/scripts/detect-unused-css.cjs",
"refactor:suggest": "node node_modules/reactforge-ai-skills/scripts/auto-refactor.cjs --dry-run",
"refactor:apply": "node node_modules/reactforge-ai-skills/scripts/auto-refactor.cjs",
"=============== CSS/STYLE MANAGEMENT ===============": "",
"css:analyze": "node node_modules/reactforge-ai-skills/scripts/analyze-css.cjs",
"css:fix": "node node_modules/reactforge-ai-skills/scripts/fix-css.cjs",
"css:convert-tailwind": "node node_modules/reactforge-ai-skills/scripts/convert-to-tailwind.cjs",
"=============== PERFORMANCE & ACCESSIBILITY ===============": "",
"perf:analyze": "node node_modules/reactforge-ai-skills/scripts/detect-slow-components.cjs",
"perf:optimize": "node node_modules/reactforge-ai-skills/scripts/optimize-performance.cjs",
"a11y:check": "node node_modules/reactforge-ai-skills/scripts/check-accessibility.cjs",
"a11y:fix": "node node_modules/reactforge-ai-skills/scripts/check-accessibility.cjs --auto-fix",
"=============== TYPESCRIPT & PROPTYPES ===============": "",
"generate:proptypes": "node node_modules/reactforge-ai-skills/scripts/generate-proptypes.cjs",
"generate:types": "node node_modules/reactforge-ai-skills/scripts/generate-typescript-interfaces.cjs",
"=============== COMPREHENSIVE MAINTENANCE ===============": "",
"maintain": "node node_modules/reactforge-ai-skills/scripts/auto-maintain.cjs",
"maintain:dry-run": "node node_modules/reactforge-ai-skills/scripts/auto-maintain.cjs --dry-run",
"maintain:quick": "npm run deps:check && npm run detect:duplicates && npm run a11y:check",
"=============== TESTING E2E ===============": "",
"testcafe:generate": "node node_modules/reactforge-ai-skills/scripts/generate-testcafe-tests.cjs",
"testcafe:coverage": "node node_modules/reactforge-ai-skills/scripts/detect-untested-components.cjs",
"testcafe:scaffold": "node node_modules/reactforge-ai-skills/scripts/generate-test-scaffold.cjs",
"=============== TESTCAFE E2E TESTING ===============": "",
"testcafe:run": "testcafe chrome testcafe/**/*.js --app 'npm run dev' --app-init-delay 5173",
"testcafe:headless": "testcafe chrome:headless testcafe/**/*.js --app 'npm run dev' --app-init-delay 5173",
"=============== VALIDATION ===============": "",
"validate": "npm run lint && npm test",
"validate:skills": "node node_modules/reactforge-ai-skills/scripts/validate-skills.cjs",
"=============== UTILITIES ===============": "",
"clean": "rm -rf node_modules dist coverage .vite",
"clean:install": "npm run clean && npm install"
},
"dependencies": {
"dotenv": "^17.4.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"jscpd": "^4.0.5",
"jsdom": "^29.0.1",
"prettier": "^3.4.2",
"stylelint": "^16.15.0",
"stylelint-config-standard": "^36.0.1",
"testcafe": "^3.7.4",
"typescript": "^5.7.2",
"vite": "^8.0.1",
"vitest": "^4.1.2",
"reactforge-ai-skills": "^1.0.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"homepage": "https://kirti.github.io/reactforge-ai-skills",
"repository": {
"type": "git",
"url": "https://github.com/kirti/reactforge-ai-skills.git"
},
"author": "Kirti Kaushal <kirtikau@gmail.com>"
}