-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.19 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.19 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
{
"name": "globalcredscheduler",
"version": "1.0.0",
"description": "Event schedule for Global Seal Events",
"main": "server.js",
"scripts": {
"frontend-install": "npm install --prefix frontend",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server.js",
"update-database": "node processData.js",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "Phillip Bindeman",
"license": "ISC",
"dependencies": {
"@types/material-ui": "^0.21.7",
"@types/react-router-dom": "^5.1.5",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-sslify": "^1.2.0",
"formik-persist": "^1.1.0",
"heroku": "^7.47.3",
"moment-timezone": "^0.5.31",
"mongoose": "^5.9.12",
"react": "^16.13.1",
"react-router-dom": "^5.2.0",
"typescript": "^3.9.3",
"xlsx": "^0.16.8"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}