-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 996 Bytes
/
package.json
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
{
"name": "expense-tracker",
"version": "1.0.0",
"description": "A MERN stack project for managing the income and expenses",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run client\" \"npm run server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/VaibhavSethia07/expense-tracker.git"
},
"author": "Vaibhav Sethia",
"license": "ISC",
"bugs": {
"url": "https://github.com/VaibhavSethia07/expense-tracker/issues"
},
"homepage": "https://github.com/VaibhavSethia07/expense-tracker#readme",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^6.3.6",
"morgan": "^1.10.0",
"prom-client": "^14.2.0"
},
"devDependencies": {
"concurrently": "^7.2.1",
"nodemon": "^2.0.7"
}
}