-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 833 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 833 Bytes
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
{
"name": "mern",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"seed": "node seedDB.js",
"start": "node server.js",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.7"
},
"dependencies": {
"axios": "^0.21.0",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.5.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"if-env": "^1.0.4",
"jquery": "^3.5.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.10.16",
"react-bootstrap": "^1.4.0",
"react-moment": "^1.0.0"
}
}