-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 960 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 960 Bytes
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
{
"name": "inventory-system",
"version": "1.0.0",
"description": "Inventory Management System",
"scripts": {
"start": "concurrently \"npm run server --prefix backend\" \"npm run dev --prefix frontend\"",
"install-all": "npm install && npm install --prefix backend && npm install --prefix frontend",
"dev:backend": "npm run server --prefix backend",
"dev:frontend": "npm run dev --prefix frontend",
"build": "npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^9.0.0",
"bcryptjs": "^3.0.3",
"body-parser": "^2.2.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-validator": "^7.3.1",
"jsonwebtoken": "^9.0.3",
"lodash": "^4.17.15",
"lowdb": "^1.0.0",
"nodemon": "^3.1.11",
"pdfkit": "^0.17.2",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7"
}
}