-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
45
46
47
48
{
"name": "nk-jobify",
"description": "created by NOELLE KUTI with guidance from JOHN SMILGA's Udemy Course",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"history": "^5.3.0",
"http-status-codes": "^2.2.0",
"js-tokens": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"loose-envify": "^1.4.0",
"mongoose": "^6.3.2",
"morgan": "^1.10.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"regenerator-runtime": "^0.13.9",
"scheduler": "^0.21.0",
"validator": "^13.7.0"
},
"devDependencies": {
"concurrently": "^7.2.1",
"nodemon": "^2.0.16"
},
"scripts": {
"server": "nodemon server --ignore client",
"client": "npm start --prefix client",
"start": "concurrently --kill-others-on-fail \"npm run server\" \" npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoelleKuti/Jobify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NoelleKuti/Jobify/issues"
},
"homepage": "https://github.com/NoelleKuti/Jobify#readme"
}