This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
fullstack-open/part4/bloglist/package.json
Andrew Trieu 1c781aca74 Upload 4.9
2023-05-31 20:55:51 +03:00

32 lines
741 B
JSON

{
"name": "bloglist",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node index.js",
"dev": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.1.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"mongoose": "^7.2.2"
},
"devDependencies": {
"eslint": "^8.41.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"globalTeardown": "./tests/teardown.js"
}
}