package.json
444 B · json · 20 lines
1{2 "name": "carlomitchener-site",3 "private": true,4 "type": "module",5 "scripts": {6 "kit": "bun scripts/kit.ts",7 "snapshot": "bun scripts/snapshot.ts",8 "fake": "bun scripts/fake.ts",9 "build": "bun scripts/build.ts",10 "push": "bun scripts/push.ts",11 "dev": "bun scripts/dev.ts"12 },13 "dependencies": {14 "react": "^19.2.8",15 "react-dom": "^19.2.8"16 },17 "devDependencies": {18 "@types/react": "^19.2.8"19 }20}