Skip to content

Instantly share code, notes, and snippets.

@redcartel
Created May 7, 2022 23:40
Show Gist options
  • Save redcartel/a6dd7ae225cca2a365932c90ea11edb7 to your computer and use it in GitHub Desktop.
Save redcartel/a6dd7ae225cca2a365932c90ea11edb7 to your computer and use it in GitHub Desktop.
{
"name": "express-project",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "babel src -d dist --copy-files",
"dev": "babel-watch -w src -w .env src/index.js",
"start": "node dist/index.js",
"test": "cross-env NODE_ENV=test jest --verbose",
"test:watch": "cross-env NODE_ENV=test jest --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"helmet": "^5.0.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"babel-watch": "^7.7.0",
"cross-env": "^7.0.3",
"jest": "^28.1.0",
"supertest": "^6.2.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment