Picsur/backend/package.json

84 lines
2.7 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-03-31 21:00:48 +00:00
"version": "0.3.0",
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",
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-06-09 14:42:13 +00:00
"@fastify/helmet": "^9.1.0",
2022-06-17 08:48:56 +00:00
"@fastify/multipart": "^7.1.0",
2022-08-26 10:38:05 +00:00
"@fastify/static": "^6.5.0",
"@nestjs/common": "^9.0.11",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.11",
"@nestjs/jwt": "^9.0.0",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-fastify": "^9.0.11",
"@nestjs/serve-static": "^3.0.0",
"@nestjs/typeorm": "^9.0.1",
2022-02-21 13:53:21 +00:00
"bcrypt": "^5.0.1",
"bmp-img": "^1.1.0",
2022-04-15 11:05:17 +00:00
"cors": "^2.8.5",
2022-05-01 21:29:56 +00:00
"fastify-static": "^4.7.0",
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-02-21 13:53:21 +00:00
"passport-jwt": "^4.0.0",
"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-05-01 21:29:56 +00:00
"qoi-img": "^1.1.0",
2022-02-21 09:46:03 +00:00
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
2022-08-26 10:38:05 +00:00
"rxjs": "^7.5.6",
2022-06-27 11:22:48 +00:00
"sharp": "^0.30.7",
2022-08-26 10:38:05 +00:00
"typeorm": "0.3.7",
"zod": "^3.18.0"
2022-02-21 09:46:03 +00:00
},
"devDependencies": {
2022-08-26 10:38:05 +00:00
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.1",
"@nestjs/testing": "^9.0.11",
2022-02-21 13:53:21 +00:00
"@types/bcrypt": "^5.0.0",
2022-04-15 11:05:17 +00:00
"@types/cors": "^2.8.12",
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-08-26 10:38:05 +00:00
"@types/node": "^18.7.13",
2022-02-21 13:53:21 +00:00
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
2022-03-09 10:53:06 +00:00
"@types/passport-strategy": "^0.2.35",
2022-08-26 10:38:05 +00:00
"@types/sharp": "^0.30.5",
2022-03-31 20:58:31 +00:00
"@types/supertest": "^2.0.12",
2022-08-26 10:38:05 +00:00
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.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-06-17 08:48:56 +00:00
"prettier": "^2.7.1",
2022-02-23 10:10:25 +00:00
"source-map-support": "^0.5.21",
2022-06-27 11:22:48 +00:00
"ts-loader": "^9.3.1",
2022-08-26 10:38:05 +00:00
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "4.8.2",
"webpack": "^5.74.0"
2022-02-21 09:46:03 +00:00
}
}