simple-picture-gallery/picture-gallery-server/package.json

48 lines
1.3 KiB
JSON

{
"name": "picture-gallery-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier --write \"**/*.+(ts|tsx)\"",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"server:build": "npx tsc",
"server:start": "node dist/app.js",
"server:run": "npm run server:build && npm run server:start",
"server:watch": "npx nodemon src/app.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "22.2.0",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"nodemon": "3.1.4",
"prettier": "3.3.3",
"ts-jest": "29.2.4",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"dependencies": {
"express": "4.19.2",
"express-winston": "4.2.0",
"natsort": "2.0.3",
"sharp": "0.33.4",
"winston": "3.14.1"
}
}