mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 07:37:49 +01:00
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "todolist",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "node ./app.js",
|
|
"debug": "cross-env NODE_ENV=development npx nodemon --inspect ./app.js",
|
|
"test": "cross-env NODE_ENV=test jest",
|
|
"heroku-postbuild": "cd react && npm install && npm run build"
|
|
},
|
|
"cacheDirectories": [
|
|
"react/node_modules",
|
|
"node_modules"
|
|
],
|
|
"engines": {
|
|
"node": "10.x.x"
|
|
},
|
|
"author": "",
|
|
"dependencies": {
|
|
"body-parser": "^1.18.3",
|
|
"compression": "^1.7.2",
|
|
"cors": "^2.8.4",
|
|
"dotenv": "^5.0.1",
|
|
"express": "^4.16.3",
|
|
"express-http-to-https": "^1.1.4",
|
|
"express-jwt": "^5.3.1",
|
|
"hsts": "^2.1.0",
|
|
"jsonwebtoken": "^8.3.0",
|
|
"mongoose": "^5.2.1",
|
|
"mongoose-findorcreate": "^3.0.0",
|
|
"mongoose-unique-validator": "^2.0.1",
|
|
"morgan": "^1.9.0",
|
|
"passport": "^0.4.0",
|
|
"passport-google-oauth": "^1.0.0",
|
|
"passport-local": "^1.0.0",
|
|
"passport-local-mongoose": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^5.2.0",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-airbnb-base": "^12.1.0",
|
|
"eslint-config-node": "^2.0.0",
|
|
"eslint-config-prettier": "^2.9.0",
|
|
"eslint-plugin-import": "^2.13.0",
|
|
"eslint-plugin-jest": "^21.17.0",
|
|
"eslint-plugin-prettier": "^2.6.2",
|
|
"jest": "^22.4.4",
|
|
"mongodb-memory-server": "^1.9.0",
|
|
"nodemon": "^1.17.5",
|
|
"prettier-eslint": "^8.8.2",
|
|
"supertest": "^3.1.0"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"roots": [
|
|
"<rootDir>/tests/"
|
|
]
|
|
}
|
|
}
|