-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.05 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
{
"name": "anshuman",
"version": "1.0.0",
"description": "My portfolio website",
"main": "server.js",
"repository": "https://github.com/amohapatra123/portfolio.git",
"author": "Anshuman Mohapatra <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && yarn run build",
"install-client": "cd client && yarn install",
"heroku-postbuild": "yarn run install-client && yarn run build",
"start": "nodemon server.js",
"client": "cd client && yarn start",
"dev": "concurrently -n 'server,client' -c 'red,green' \"nodemon server.js\" \"yarn run client\""
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.0",
"concurrently": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jquery": "^3.5.1",
"mongoose": "^5.7.9",
"nodemailer": "^6.4.11",
"nodemon": "^2.0.4",
"popper.js": "^1.16.1",
"react-router-dom": "^5.2.0",
"reactstrap": "^8.5.1"
}
}