-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 710 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 710 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
{
"name": "expense-management-system",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm start\" \"npm run client\""
},
"keywords": [],
"author": "Sameeksha Gupta",
"license": "MIT",
"description": "Expense management system",
"dependencies": {
"colors": "^1.4.0",
"concurrently": "^9.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"moment": "^2.30.1",
"mongoose": " ^8.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.7",
"react-bootstrap": "^2.10.5",
"react-spinners": "^0.14.1"
}
}