-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 934 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
34
35
36
37
38
{
"name": "my-portifolio",
"version": "1.0.0",
"description": "My Personal Portifolio",
"main": "server.js",
"scripts": {
"start": "node server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend",
"backend": "nodemon server.js",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run backend\" \"npm run frontend\" ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"MERN",
"MongoDB",
"Express",
"React.JS",
"Node.JS",
"FullStack"
],
"author": "Diogo Malfatti",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^6.0.3",
"slug": "^5.1.0"
},
"devDependencies": {
"concurrently": "^6.2.1",
"nodemon": "^2.0.12"
},
"engines": {
"node": "14.x"
}
}