-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (33 loc) · 852 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
{
"name": "expense-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server",
"client" : "npm start --prefix client",
"dev" : "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lishakothari/budget-manager.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lishakothari/budget-manager/issues"
},
"homepage": "https://github.com/lishakothari/budget-manager#readme",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^6.3.8",
"morgan": "^1.10.0"
},
"devDependencies": {
"concurrently": "^7.2.2",
"nodemon": "^2.0.16"
}
}