-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "metromart",
"version": "1.0.0",
"description": "Metromart is an enterprise-grade supermarket management solution designed to streamline fast, reliable, and scalable handling of all major retail processes. This project emphasizes robust database architecture to ensure integrity, normalization, and efficient data operations for large-scale supermarket chains and hypermarkets.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "nodemon app.js",
"init-db": "node scripts/init-db.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ParvTiwari/MetroMart.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ParvTiwari/MetroMart/issues"
},
"homepage": "https://github.com/ParvTiwari/MetroMart#readme",
"dependencies": {
"@supabase/supabase-js": "^2.78.0",
"body-parser": "^2.2.0",
"connect-flash": "^0.1.1",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-session": "^1.18.2",
"method-override": "^3.0.0",
"pg": "^8.16.3"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}