-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1004 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1004 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
36
37
{
"name": "Proyecto_BackEnd_FrontEnd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon backend/index.js --ignore frontend",
"start": "cross-env NODE_ENV=production node backend/index.js",
"postinstall": "npm run build",
"build": "cross-env NODE_ENV=production webpack",
"serverdev": "webpack-dev-server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"mongoose": "^5.5.5",
"morgan": "^1.9.1",
"multer": "^1.4.1"
},
"devDependencies": {
"css-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"nodemon": "^1.19.0",
"style-loader": "^0.23.1",
"timeago.js": "^4.0.0-beta.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
}
}