-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 986 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
{
"name": "proyecto-books",
"version": "1.0.0",
"description": "Proyecto libros",
"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",
"server:dev": "webpack-dev-server"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"mongoose": "^5.9.22",
"morgan": "^1.10.0",
"multer": "^1.4.2"
},
"devDependencies": {
"css-loader": "^3.6.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"nodemon": "^2.0.4",
"style-loader": "^1.2.1",
"timeago.js": "^4.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}