kennel/static/package.json

24 lines
561 B
JSON
Raw Normal View History

2024-08-24 16:03:50 -04:00
{
"name": "kennel",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"watch": "./node_modules/nodemon/bin/nodemon.js --watch './src/**/*' -e ts,html --exec \"npm run build\""
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.5",
"@types/jquery": "^3.5.30",
"nodemon": "^3.1.4",
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vite-plugin-dynamic-base": "^1.1.0"
},
"dependencies": {
"jquery": "^3.7.1"
}
}