-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
39
40
41
{
"name": "money-manager",
"version": "1.0.0",
"description": "React and Express",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tronax1/Money-Manager.git"
},
"author": "Team 4",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tronax1/Money-Manager/issues"
},
"homepage": "https://github.com/Tronax1/Money-Manager#readme",
"dependencies": {
"@trendmicro/react-sidenav": "^0.4.5",
"body-parser": "^1.19.0",
"concurrently": "^4.1.0",
"dotenv": "^8.1.0",
"express": "^4.17.0",
"material-design-icons": "^3.0.1",
"nodemailer": "^6.2.1",
"react": "^16.8.6",
"react-html-table-to-excel": "^2.0.0",
"react-number-format": "^4.0.8",
"react-router-dom": "^5.0.1",
"react-simple-sidenav": "^1.0.1",
"recharts": "^1.6.2"
},
"devDependencies": {
"nodemon": "^1.19.0"
}
}