Picsur/backend/package.json

88 lines
2.9 KiB
JSON
Raw Normal View History

2022-02-21 09:46:03 +00:00
{
2022-02-27 19:27:22 +00:00
"name": "picsur-backend",
2022-10-11 17:47:02 +00:00
"version": "0.4.1",
2022-02-27 19:27:22 +00:00
"description": "Backend for Picsur",
2022-02-21 09:46:03 +00:00
"license": "GPL-3.0",
2022-02-27 19:27:22 +00:00
"repository": "https://github.com/rubikscraft/Picsur",
2022-02-21 09:46:03 +00:00
"author": "Rubikscraft <contact@rubikscraft.nl>",
2022-02-21 21:17:44 +00:00
"type": "module",
2022-02-24 21:56:27 +00:00
"main": "dist/main.js",
2022-02-21 09:46:03 +00:00
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
2022-05-01 21:29:56 +00:00
"start": "nest start --exec \"node --es-module-specifier-resolution=node\"",
"start:dev": "yarn clean && nest start --watch --exec \"node --es-module-specifier-resolution=node\"",
"start:debug": "nest start --debug --watch --exec \"node --es-module-specifier-resolution=node\"",
"start:prod": "node --es-module-specifier-resolution=node dist/main",
"typeorm": "typeorm-ts-node-esm",
2022-09-04 18:04:20 +00:00
"migrate": "PICSUR_PRODUCTION=\"true\" yarn typeorm migration:generate -d ./src/datasource.ts",
2022-02-21 13:53:21 +00:00
"format": "prettier --write \"src/**/*.ts\"",
2022-03-24 18:56:26 +00:00
"clean": "rimraf dist",
2022-05-02 10:11:25 +00:00
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"purge": "rm -rf dist && rm -rf node_modules"
2022-02-21 09:46:03 +00:00
},
"dependencies": {
2022-12-20 15:21:25 +00:00
"@fastify/helmet": "^10.1.0",
"@fastify/multipart": "^7.3.0",
2022-12-25 21:54:37 +00:00
"@fastify/reply-from": "^8.3.1",
2022-12-20 15:21:25 +00:00
"@fastify/static": "^6.6.0",
"@nestjs/common": "^9.2.1",
2022-08-26 10:38:05 +00:00
"@nestjs/config": "^2.2.0",
2022-12-20 15:21:25 +00:00
"@nestjs/core": "^9.2.1",
2022-08-26 10:38:05 +00:00
"@nestjs/jwt": "^9.0.0",
"@nestjs/passport": "^9.0.0",
2022-12-20 15:21:25 +00:00
"@nestjs/platform-fastify": "^9.2.1",
2022-08-26 10:38:05 +00:00
"@nestjs/serve-static": "^3.0.0",
"@nestjs/typeorm": "^9.0.1",
2022-10-11 17:47:02 +00:00
"bcrypt": "^5.1.0",
2022-09-02 10:26:05 +00:00
"bmp-img": "^1.2.1",
2022-04-15 11:05:17 +00:00
"cors": "^2.8.5",
2022-08-26 10:38:05 +00:00
"file-type": "^18.0.0",
2022-04-25 14:13:58 +00:00
"ms": "^2.1.3",
2022-08-26 10:38:05 +00:00
"p-timeout": "^6.0.0",
2022-06-05 10:16:31 +00:00
"passport": "^0.6.0",
2022-09-03 12:46:39 +00:00
"passport-headerapikey": "^1.2.2",
2022-12-25 12:59:43 +00:00
"passport-jwt": "^4.0.1",
2022-02-21 13:53:21 +00:00
"passport-local": "^1.0.0",
2022-03-09 10:53:06 +00:00
"passport-strategy": "^1.0.0",
2022-08-26 10:38:05 +00:00
"pg": "^8.8.0",
2022-02-28 09:29:40 +00:00
"picsur-shared": "*",
2022-06-27 11:22:48 +00:00
"posix.js": "^0.1.1",
2022-12-20 15:21:25 +00:00
"qoi-img": "^2.1.1",
2022-02-21 09:46:03 +00:00
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
2022-12-20 15:21:25 +00:00
"rxjs": "^7.8.0",
2022-12-25 12:59:43 +00:00
"sharp": "^0.31.3",
"stream-parser": "^0.3.1",
"thunks": "^4.9.6",
2022-12-20 15:21:25 +00:00
"typeorm": "0.3.11",
"zod": "^3.20.2"
2022-02-21 09:46:03 +00:00
},
"devDependencies": {
2022-12-20 15:21:25 +00:00
"@nestjs/cli": "^9.1.5",
2022-09-06 14:32:16 +00:00
"@nestjs/schematics": "^9.0.3",
2022-12-20 15:21:25 +00:00
"@nestjs/testing": "^9.2.1",
2022-02-21 13:53:21 +00:00
"@types/bcrypt": "^5.0.0",
2022-12-20 15:21:25 +00:00
"@types/cors": "^2.8.13",
2022-04-25 14:13:58 +00:00
"@types/ms": "^0.7.31",
2022-02-21 21:17:44 +00:00
"@types/multer": "^1.4.7",
2022-12-20 15:21:25 +00:00
"@types/node": "^18.11.17",
"@types/passport-jwt": "^3.0.8",
2022-02-21 13:53:21 +00:00
"@types/passport-local": "^1.0.34",
2022-03-09 10:53:06 +00:00
"@types/passport-strategy": "^0.2.35",
2022-10-11 17:47:02 +00:00
"@types/sharp": "^0.31.0",
2022-03-31 20:58:31 +00:00
"@types/supertest": "^2.0.12",
2022-12-20 15:21:25 +00:00
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
2022-03-04 13:49:41 +00:00
"eslint-config-prettier": "^8.5.0",
2022-08-26 10:38:05 +00:00
"eslint-plugin-prettier": "^4.2.1",
2022-12-20 15:21:25 +00:00
"prettier": "^2.8.1",
2022-02-23 10:10:25 +00:00
"source-map-support": "^0.5.21",
2022-12-20 15:21:25 +00:00
"ts-loader": "^9.4.2",
2022-08-26 10:38:05 +00:00
"ts-node": "^10.9.1",
2022-12-20 15:21:25 +00:00
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4"
2022-02-21 09:46:03 +00:00
}
}