forked from Evan-HR/StellarView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
38
39
40
41
42
43
44
{
"name": "stargazer",
"version": "1.0.0",
"description": "sample app for using mysql with node",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"setup": "npm install && cd client && npm install",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"density-clustering": "^1.3.0",
"dotenv": "^8.2.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-mysql-session": "^2.1.4",
"express-session": "^1.17.1",
"express-validator": "^5.3.1",
"geolib": "^3.3.4",
"heroku-ssl-redirect": "0.0.4",
"material-ui": "^1.0.0-beta.47",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"nodemon": "^2.0.3",
"path": "^0.12.7",
"request": "^2.88.2",
"suncalc": "^1.8.0"
},
"devDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}