-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "crewfest",
"version": "1.0.1",
"description": "Lightweight self-hosted shift planning for festival crews — applications, scheduling, exports. Battle-tested at a real festival.",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "npm run build:css && tsc",
"build:css": "tailwindcss -i ./src/styles/input.css -o ./public/assets/tailwind.css --minify",
"seed:shifts": "tsx src/db/seed.ts",
"db:reset-crew": "tsx src/scripts/reset-crew.ts"
},
"keywords": [
"festival",
"shift-planning",
"volunteers",
"crew",
"self-hosted",
"sqlite",
"hono"
],
"author": "Adrien Renauldon",
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"dependencies": {
"@hono/node-server": "^1.19.11",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.8.0",
"csv-parse": "^6.2.1",
"dotenv": "^17.3.1",
"hono": "^4.12.9",
"puppeteer": "^24.40.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"tailwindcss": "^3.4.19",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}