-
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.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 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": "clustr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "postcss ./public/styles/styles.css -o ./public/styles/build.css --watch",
"start": "nodemon app.js",
"dev": "concurrently \"npm:build:css\" \"npm:start\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.19.1",
"@quixo3/prisma-session-store": "^3.1.13",
"@supabase/supabase-js": "^2.89.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"connect-flash": "^0.1.1",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-session": "^1.18.2",
"express-validator": "^7.2.1",
"multer": "^2.0.2",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.16.3",
"prisma": "^6.19.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.12",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"crypto": "^1.0.1",
"jest": "^30.1.3",
"nodemon": "^3.1.10",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"tailwindcss": "^4.1.12"
}
}