-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 855 Bytes
/
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
{
"name": "React-Portfolio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"atob": "^2.1.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"if-env": "^1.0.4",
"nodemailer": "^6.6.0"
},
"devDependencies": {
"concurrently": "^6.0.2",
"nodemon": "^2.0.7"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/index.js",
"start:dev": "concurrently \"nodemon server_functions/index.js\" \"npm run client\"",
"client": "cd hosting && npm run start",
"install": "cd hosting && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "v14.16.1",
"npm": "6.14.12"
},
"keywords": [],
"author": "",
"license": "ISC"
}