Commit the functional vite config and dependencies while I have them at a baseline working state

This commit is contained in:
Oliver-Akins 2025-04-19 15:50:10 -06:00
parent 10c1760afe
commit 19a2bdc32f
4 changed files with 3042 additions and 0 deletions

22
package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "stat-tracker",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint --fix",
"lint:nofix": "eslint",
"dev": "NODE_ENV=development vite build --mode dev --watch",
"dev:once": "NODE_ENV=development vite build --mode dev",
"build": "NODE_ENV=production vite build --mode prod"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^4.2.0",
"eslint": "^9.25.0",
"glob": "^11.0.1",
"terser": "^5.39.0",
"vite": "^6.3.1"
},
"dependencies": {
"chart.js": "^4.4.9"
}
}