32 lines
807 B
JSON
32 lines
807 B
JSON
{
|
|
"name": "ExpressJS",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "npm-run-all --parallel start-frontend start-backend",
|
|
"start-backend": "nodemon ./backend/src/js/app.js localhost 3000",
|
|
"start-frontend": "webpack --watch --config frontend/webpack.config.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"bcrypt": "^5.0.0",
|
|
"express": "^4.17.1",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"mongodb": "^3.6.1",
|
|
"yaml": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.4.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"nodemon": "^2.0.4",
|
|
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
"webpack": "^4.41.2",
|
|
"webpack-cli": "^3.3.10",
|
|
"webpack-dev-server": "^3.9.0",
|
|
"npm-run-all": "^4.1.5"
|
|
}
|
|
}
|