71 lines
2.0 KiB
JSON
71 lines
2.0 KiB
JSON
{
|
|
"name": "setup-back",
|
|
"version": "1.1.3",
|
|
"description": "Backend Setup",
|
|
"private": true,
|
|
"license": "UNLICENSED",
|
|
"main": "dist/index.js",
|
|
"repository": "git@github.com:FelixLgr/BUT-3-Dev.git",
|
|
"scripts": {
|
|
"build": "rimraf dist && tsc && tsc-alias",
|
|
"check-types": "tsc --noemit",
|
|
"deploy": "pm2 deploy ecosystem.config.js production",
|
|
"format": "prettier --write '**/*.{js,jsx,ts}'",
|
|
"lint": "eslint . && yarn check-types",
|
|
"setup": "yarn install",
|
|
"start:development": "nodemon",
|
|
"start:production": "node dist/index.js",
|
|
"test": "cross-env NODE_ENV=test jest",
|
|
"test:cov": "cross-env NODE_ENV=test jest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@types/bcryptjs": "^2.4.2",
|
|
"@types/cookie-parser": "^1.4.3",
|
|
"@types/cors": "^2.8.12",
|
|
"@types/crypto-js": "^4.1.1",
|
|
"@types/express": "^4.17.14",
|
|
"@types/jest": "^29.1.2",
|
|
"@types/jsonwebtoken": "^9.0.1",
|
|
"@types/multer": "^1.4.7",
|
|
"@types/node": "^18.7.18",
|
|
"@types/supertest": "^2.0.12",
|
|
"axios": "^1.1.2",
|
|
"bcryptjs": "^2.4.3",
|
|
"cookie-parser": "^1.4.6",
|
|
"cors": "^2.8.5",
|
|
"crypto-js": "^4.1.1",
|
|
"date-fns": "^2.29.3",
|
|
"dotenv": "^16.0.2",
|
|
"express": "^4.18.1",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"mongoose": "^6.6.0",
|
|
"multer": "^1.4.5-lts.1",
|
|
"path": "^0.12.7",
|
|
"rimraf": "^4.1.2",
|
|
"sharp": "^0.32.1",
|
|
"tsc-alias": "^1.8.2",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.19.0",
|
|
"@babel/eslint-parser": "^7.18.9",
|
|
"@babel/preset-env": "^7.19.0",
|
|
"@swc/core": "^1.3.0",
|
|
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
|
|
"commitlint": "^17.1.2",
|
|
"commitlint-plugin-gitmoji": "^2.2.4",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.23.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"jest": "^29.1.2",
|
|
"lint-staged": "^13.0.3",
|
|
"nodemon": "^2.0.19",
|
|
"pm2": "^5.2.0",
|
|
"prettier": "^2.7.1",
|
|
"supertest": "^6.3.0",
|
|
"ts-jest": "^29.0.3",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.1.0"
|
|
}
|
|
}
|