multy-stub/package.json

54 lines
1.5 KiB
JSON
Raw Normal View History

2023-08-01 13:14:02 +03:00
{
"name": "multi-stub",
2024-05-18 11:49:25 +03:00
"version": "1.0.1",
2023-08-01 13:14:02 +03:00
"description": "",
"main": "index.js",
"scripts": {
"start": "npx nodemon ./server",
"up:prod": "cross-env NODE_ENV=\"production\" node ./server",
"deploy:d:stop": "docker-compose down",
"deploy:d:build": "docker-compose build",
"deploy:d:up": "docker-compose up -d",
"redeploy": "npm run deploy:d:stop && npm run deploy:d:build && npm run deploy:d:up",
"eslint": "npx eslint ./server",
"eslint:fix": "npx eslint ./server --fix",
"test": "echo \"test complete\"",
2023-08-01 13:15:12 +03:00
"test:start": "start-server-and-test up:prod 8044 test"
2023-08-01 13:14:02 +03:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/online-mentor/multi-stub.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"homepage": "https://bitbucket.org/online-mentor/multi-stub#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-session": "^1.17.3",
2023-11-25 11:56:14 +03:00
"jsdom": "^22.1.0",
2023-08-01 13:14:02 +03:00
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.8",
"mysql": "^2.18.1",
"pbkdf2-password": "^1.2.1",
"socket.io": "^4.7.1",
"start-server-and-test": "^1.13.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "18.17.1",
"eslint": "8.46.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.0",
"nodemon": "3.0.1"
}
}