aboutsummaryrefslogtreecommitdiff
path: root/static/package.json
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-08-24 13:03:50 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-08-24 13:03:56 -0700
commit5dc264e08253c3a97ea41d1fde5fbf3f33dd6591 (patch)
tree0db325e5e280176702263d28817c371abce050db /static/package.json
parent6f374aac7f4d553c484eecc77c9599be79f2d834 (diff)
downloadkennel.hatecomputers.club-5dc264e08253c3a97ea41d1fde5fbf3f33dd6591.tar.gz
kennel.hatecomputers.club-5dc264e08253c3a97ea41d1fde5fbf3f33dd6591.zip
bring in jQuery, build with Vite
Diffstat (limited to 'static/package.json')
-rw-r--r--static/package.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/static/package.json b/static/package.json
new file mode 100644
index 0000000..1c698e0
--- /dev/null
+++ b/static/package.json
@@ -0,0 +1,23 @@
+{
+ "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"
+ }
+}