Created more npm scripts and expanded readme
This commit is contained in:
parent
b6dae295a5
commit
991019e756
5 changed files with 18 additions and 31397 deletions
11
README.md
11
README.md
|
|
@ -1,3 +1,10 @@
|
|||
# qOverflow
|
||||
Solution for BDPA NHSCC 2022
|
||||
(https://github.com/nhscc/problem-statements/tree/main/2022/qoverflow).
|
||||
|
||||
## BDPA NHSCC 2022 Problem:
|
||||
|
||||
- [Problem Statement](https://github.com/nhscc/problem-statements/tree/main/2022/qoverflow)
|
||||
|
||||
## Solution
|
||||
|
||||
- [GitHub Repository](https://github.com/spicecat/qOverflow)
|
||||
- [Server API Documentation](https://app.swaggerhub.com/apis-docs/C4theBomb/qOverflow/1.0.0/)
|
||||
|
|
|
|||
31390
client/package-lock.json
generated
31390
client/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -29,8 +29,7 @@
|
|||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"predeploy": "npm run build",
|
||||
"deploy": "gh-pages -d build"
|
||||
"predeploy": "npm run build"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
|
|
|
|||
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -31002,7 +31002,7 @@
|
|||
"jsonwebtoken": "^8.5.1",
|
||||
"mongoose": "^6.4.5",
|
||||
"morgan": "~1.10.0",
|
||||
"node-cron": "*",
|
||||
"node-cron": "^3.0.1",
|
||||
"nodemon": "^2.0.19",
|
||||
"superagent": "^8.0.0",
|
||||
"superagent-throttle": "^1.0.1",
|
||||
|
|
|
|||
|
|
@ -4,13 +4,18 @@
|
|||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"start": "npm start --workspaces",
|
||||
"start:server": "npm start -w server",
|
||||
"start:client": "npm start -w client",
|
||||
"start:prod": "npm run start:server",
|
||||
"prestart:prod": "npm build -w client",
|
||||
"build": "npm build -w client"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/spicecat/qOverflow.git"
|
||||
},
|
||||
"author": "",
|
||||
"author": "C4 Patino, Tejus Krishan, Andy Teh",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/spicecat/qOverflow/issues"
|
||||
|
|
|
|||
Reference in a new issue