mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 15:27:49 +01:00
Bumps [sharp](https://github.com/lovell/sharp) from 0.30.4 to 0.30.5. - [Release notes](https://github.com/lovell/sharp/releases) - [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md) - [Commits](https://github.com/lovell/sharp/compare/v0.30.4...v0.30.5) --- updated-dependencies: - dependency-name: sharp dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
93 lines
3.3 KiB
JSON
93 lines
3.3 KiB
JSON
{
|
|
"name": "photos",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"start-frontend": "cd frontend && npm start",
|
|
"start": "ts-node -T -r tsconfig-paths/register src/server.ts",
|
|
"ts-node-dev": "ts-node-dev -r tsconfig-paths/register ./src/server.ts",
|
|
"dev": "cross-env NODE_ENV=development concurrently npm:ts-node-dev npm:start-frontend -c 'blue,green'",
|
|
"test": "cross-env NODE_ENV=test mocha --timeout 15000 -r ts-node/register -r tsconfig-paths/register 'src/tests/**/*.ts' ",
|
|
"test-frontend": "cd frontend && npm test",
|
|
"test-all": "npm test && npm run test-frontend",
|
|
"lint": "eslint ./src/** --ext .js,.jsx,.ts,.tsx && tsc --noEmit",
|
|
"lint-fix": "eslint ./src/** --ext .js,.jsx,.ts,.tsx --fix",
|
|
"lint-frontend": "cd frontend && npm run lint",
|
|
"lint-frontend-fix": "cd frontend && npm run lint-fix",
|
|
"lint-all": "npm run lint && npm run lint-frontend",
|
|
"lint-all-fix": "npm run lint-fix && npm run lint-frontend-fix",
|
|
"prettier-check": "prettier src/**/*.ts frontend/src/**/*.ts frontend/src/**/*.tsx --check",
|
|
"prettify": "prettier src/**/*.ts frontend/src/**/*.ts frontend/src/**/*.tsx --write",
|
|
"typeorm-dev": "cross-env NODE_ENV=development ts-node -T -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
|
|
"typeorm": "cross-env NODE_ENV=production ts-node -T -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@koa/cors": "^3.1.0",
|
|
"@koa/router": "^10.1.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.12.0",
|
|
"@typescript-eslint/parser": "^5.12.0",
|
|
"bcrypt": "^5.0.1",
|
|
"chai": "^4.3.6",
|
|
"class-validator": "^0.13.2",
|
|
"concurrently": "^7.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"deasync": "^0.1.24",
|
|
"eslint": "^8.9.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-import-resolver-typescript": "^2.5.0",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"eslint-plugin-mocha": "^10.0.3",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"exifreader": "^4.2.0",
|
|
"hasha": "^5.2.2",
|
|
"husky": "^7.0.4",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"koa": "^2.13.4",
|
|
"koa-body": "^4.2.0",
|
|
"koa-jwt": "^4.0.3",
|
|
"koa-logger": "^3.2.1",
|
|
"koa-send": "^5.0.1",
|
|
"koa-sslify": "^5.0.0",
|
|
"koa-static": "^5.0.0",
|
|
"mime-types": "^2.1.34",
|
|
"mocha": "^9.2.0",
|
|
"mysql": "^2.18.1",
|
|
"prettier": "^2.5.1",
|
|
"prettier-eslint": "^13.0.0",
|
|
"sharp": "^0.30.5",
|
|
"supertest": "^6.2.2",
|
|
"ts-node": "^10.5.0",
|
|
"ts-node-dev": "^1.1.8",
|
|
"tsconfig-paths": "^3.12.0",
|
|
"typeorm": "^0.2.41",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/chai": "^4.3.0",
|
|
"@types/concurrently": "^6.4.0",
|
|
"@types/deasync": "^0.1.2",
|
|
"@types/eslint": "^8.4.1",
|
|
"@types/eslint-plugin-prettier": "^3.1.0",
|
|
"@types/jsonwebtoken": "^8.5.8",
|
|
"@types/koa": "^2.13.4",
|
|
"@types/koa-logger": "^3.1.2",
|
|
"@types/koa-send": "^4.1.3",
|
|
"@types/koa-sslify": "^4.0.3",
|
|
"@types/koa-static": "^4.0.2",
|
|
"@types/koa__cors": "^3.1.1",
|
|
"@types/koa__router": "^8.0.11",
|
|
"@types/mime-types": "^2.1.1",
|
|
"@types/mocha": "^9.1.0",
|
|
"@types/mysql": "^2.15.21",
|
|
"@types/prettier": "^2.4.4",
|
|
"@types/sharp": "^0.29.5",
|
|
"@types/supertest": "^2.0.11"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run lint-all && npm run prettier-check"
|
|
}
|
|
}
|
|
}
|