-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.41 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.41 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
{
"name": "chapterhub-inventory",
"version": "1.0.0",
"author": "Sameer Ali",
"description": "A full-stack Express + PostgreSQL inventory app for managing books and genres. Features CRUD operations, image uploads, search, filtering, sorting, and server-rendered views using EJS and Tailwind CSS.",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/devxsameer/chapterhub-inventory.git"
},
"type": "module",
"scripts": {
"start": "node app.js",
"dev": "concurrently -n \"SERVER,TAILWIND\" -c \"cyan,magenta\" \"pnpm dev:server\" \"pnpm dev:css\"",
"dev:server": "nodemon",
"dev:css": "tailwindcss -i ./public/css/global.css -o ./public/css/output.css --watch --fast",
"seed": "node db/seed.js",
"seed:reset": "node db/seed.js --reset",
"css:build": "tailwindcss -i ./public/css/global.css -o ./public/css/output.css --minify"
},
"keywords": [],
"license": "ISC",
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c",
"dependencies": {
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-validator": "^7.3.0",
"multer": "^2.0.2",
"pg": "^8.16.3"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.17",
"concurrently": "^9.2.1",
"nodemon": "^3.1.11",
"tailwindcss": "^4.1.17"
}
}