-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
40
{
"name": "thehunt",
"version": "1.0.0",
"description": "Full-stack MERN application.",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"heroku-postbuild": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PLKGIT/thehunt.git"
},
"author": "Sonal Bhoraniya, Jyoschsna Gongal, Pam Kelly, Hebah Memon, Nida Memon",
"license": "ISC",
"bugs": {
"url": "https://github.com/PLKGIT/thehunt/issues"
},
"devDependencies": {
"concurrently": "^5.2.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"if-env": "^1.0.4",
"is-empty": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.20",
"validator": "^13.7.0"
}
}