-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 KB
/
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
36
37
{
"name": "budget-tracker",
"version": "1.0.0",
"description": "web app to track your expenses",
"main": "index.js",
"scripts": {
"client": "cd client && npm run start",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"server": "node server/index.js",
"develop": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix client\"",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aish2002/budget-tracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aish2002/budget-tracker/issues"
},
"homepage": "https://github.com/aish2002/budget-tracker#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^6.2.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.6",
"nodemon": "^2.0.12",
"react-router-dom": "^5.3.0"
}
}