@tegain/vue-cli-plugin-mevn
Version:
Add MEVN REST API boilerplate to your Vue-CLI project
40 lines (39 loc) • 1.15 kB
JSON
{
"name": "vue-plugin-mevn-api",
"version": "0.1.0",
"description": "Add MEVN REST API boilerplate to your Vue-CLI project",
"main": "src/main.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js ./src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production babel-node src/main.js",
"start:dev": "cross-env NODE_ENV=development nodemon --exec babel-node src/main.js"
},
"author": "Thomas Egain <hello@thomasegain.fr>",
"license": "ISC",
"engines": {
"node": ">= 10.13"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"@types/chalk": "^2.2.0",
"@types/express": "^4.16.1",
"@types/mongoose": "^5.3.26",
"@types/node": "^11.13.5",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"nodemon": "^1.18.11"
},
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"dotenv-flow": "^0.4.0-rc.1",
"express": "^4.16.4",
"mongodb": "^3.2.3",
"mongoose": "^5.5.3",
"morgan": "^1.9.1"
}
}