-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
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
38
{
"name": "mern_expense_tracker",
"version": "1.0.0",
"description": "MERN Expense Tracker",
"main": "server.js",
"engines": {
"npm": "6.13.4",
"node": "10.20.1"
},
"scripts": {
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuanCodeAtATime/MERN_expense_tracker.git"
},
"author": "Juan Rivera",
"license": "ISC",
"bugs": {
"url": "https://github.com/JuanCodeAtATime/MERN_expense_tracker/issues"
},
"homepage": "https://github.com/JuanCodeAtATime/MERN_expense_tracker#readme",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.13",
"morgan": "^1.10.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"nodemon": "^2.0.3"
}
}