-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 877 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 877 Bytes
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
{
"name": "stockroach",
"version": "1.0.0",
"description": "HackTheNorth Project",
"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\"",
"build": "cd client && npm run build",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "Jacob Rajah, Eric Zhu, Craig Pinto, Kristin Huang",
"license": "ISC",
"dependencies": {
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chart.js": "^2.9.4",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react-chartjs-2": "^2.11.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}