Merge branch 'it1924312' into 'master'
keystroke back end See merge request !1
Showing
package-lock.json
deleted
100644 → 0
This source diff could not be displayed because it is too large. You can view the blob instead.
... | @@ -2,29 +2,35 @@ | ... | @@ -2,29 +2,35 @@ |
"name": "keystrokedynamics", | "name": "keystrokedynamics", | ||
"version": "1.0.0", | "version": "1.0.0", | ||
"description": "", | "description": "", | ||
"main": "server.js", | |||
"scripts": { | "scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | "build": "yarn tsc", | ||
"start": "node server.js", | "start": "yarn build && node lib/index.js", | ||
"dev": "nodemon server.js", | "dev": "yarn build && nodemon lib/index.js", | ||
"burnthemall": "rm -rf node_modules package-lock.json && npm i" | "burnthemall": "rm -rf node_modules package-lock.json && npm i" | ||
}, | }, | ||
"author": "Namit Nathwani", | "author": "Namit Nathwani", | ||
"license": "ISC", | "license": "ISC", | ||
"dependencies": { | "dependencies": { | ||
"express": "^4.17.1", | "bcryptjs": "^2.4.3", | ||
"express-winston": "^4.0.3", | "cors": "^2.8.5", | ||
"express": "^4.18.2", | |||
"jsonwebtoken": "^9.0.0", | |||
"lodash": "^4.17.19", | "lodash": "^4.17.19", | ||
"mathjs": "^7.2.0", | "mathjs": "^7.2.0", | ||
"mongoose": "^5.9.25", | "mongoose": "^5.9.25", | ||
"simple-statistics": "^7.1.0", | "simple-statistics": "^7.1.0" | ||
"winston": "^3.3.3" | |||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@types/bcryptjs": "^2.4.2", | |||
"@types/express": "^4.17.17", | |||
"@types/jsonwebtoken": "^9.0.1", | |||
"@types/lodash": "^4.14.191", | |||
"@types/node": "^18.15.1", | |||
"eslint": "^7.5.0", | "eslint": "^7.5.0", | ||
"eslint-config-airbnb": "^18.2.0", | "eslint-config-airbnb": "^18.2.0", | ||
"eslint-config-airbnb-base": "^14.2.0", | "eslint-config-airbnb-base": "^14.2.0", | ||
"eslint-plugin-import": "^2.22.0", | "eslint-plugin-import": "^2.22.0", | ||
"nodemon": "^2.0.4" | "nodemon": "^2.0.4", | ||
"typescript": "^4.9.5" | |||
} | } | ||
} | } |
routes/user.js
deleted
100644 → 0
server.js
deleted
100644 → 0
src/config/contants.ts
0 → 100644
src/config/types.ts
0 → 100644
src/index.ts
0 → 100644
src/middlewares/auth.ts
0 → 100644
src/models/Candidate.ts
0 → 100644
src/models/Organization.ts
0 → 100644
src/routes/auth.ts
0 → 100644
tsconfig.json
0 → 100644
utilities/loggers.js
deleted
100644 → 0
yarn-error.log
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
Please register or sign in to comment