mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 07:37:49 +01:00
40 lines
914 B
JSON
40 lines
914 B
JSON
{
|
|
"name": "todolist-nodeback",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node ./app.js",
|
|
"debug": "npx nodemon --inspect ./app.js",
|
|
"test": "jest"
|
|
},
|
|
"author": "",
|
|
"dependencies": {
|
|
"body-parser": "^1.18.3",
|
|
"cors": "^2.8.4",
|
|
"dotenv": "^5.0.1",
|
|
"express": "^4.16.3",
|
|
"express-jwt": "^5.3.1",
|
|
"jsonwebtoken": "^8.2.1",
|
|
"mongoose": "^5.1.1",
|
|
"morgan": "^1.9.0",
|
|
"passport": "^0.4.0",
|
|
"passport-local": "^1.0.0",
|
|
"passport-local-mongoose": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-airbnb-base": "^12.1.0",
|
|
"eslint-config-node": "^2.0.0",
|
|
"eslint-plugin-import": "^2.12.0",
|
|
"eslint-plugin-jest": "^21.15.2",
|
|
"jest": "^22.4.4",
|
|
"nodemon": "^1.17.5",
|
|
"supertest": "^3.1.0"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|