-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.62 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.62 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
{
"name": "inner-circles",
"version": "1.0.0",
"description": "InnerCircles is a private social platform built with **Node.js, Express, and PostgreSQL**, where users share posts inside invite-only circles. The app focuses on **real-world authentication, fine-grained authorization, and privacy-first content visibility**, going beyond basic CRUD functionality to mirror production-grade access control systems.",
"type": "module",
"main": "src/server.js",
"repository": {
"type": "git",
"url": "https://github.com/devxsameer/inner-circles.git"
},
"scripts": {
"start": "NODE_ENV=production node src/server.js",
"dev": "NODE_ENV=development 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",
"css:build": "tailwindcss -i ./public/css/global.css -o ./public/css/output.css --minify",
"lint": "echo \"Add ESLint later\""
},
"author": "Sameer Ali",
"license": "ISC",
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.24.0",
"devDependencies": {
"@tailwindcss/cli": "^4.1.17",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"nodemon": "^3.1.11",
"tailwindcss": "^4.1.17"
},
"dependencies": {
"bcrypt": "^6.0.0",
"connect-pg-simple": "^10.0.0",
"express": "^5.1.0",
"express-handlebars": "^8.0.4",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.2",
"express-validator": "^7.3.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.16.3"
}
}