Picsur/backend/package.json

85 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-02-21 09:46:03 +00:00
"private": false,
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",
"@fastify/multipart": "^7.0.0",
"@fastify/static": "^6.4.0",
2022-06-05 10:16:31 +00:00
"@nestjs/common": "^8.4.6",
"@nestjs/config": "^2.1.0",
"@nestjs/core": "^8.4.6",
"@nestjs/jwt": "^8.0.1",
2022-02-21 13:53:21 +00:00
"@nestjs/passport": "^8.2.1",
2022-06-05 10:16:31 +00:00
"@nestjs/platform-fastify": "^8.4.6",
2022-02-23 18:09:53 +00:00
"@nestjs/serve-static": "^2.2.2",
2022-06-05 10:16:31 +00:00
"@nestjs/typeorm": "^8.1.2",
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-06-05 10:16:31 +00:00
"file-type": "^17.1.2",
2022-04-25 14:13:58 +00:00
"ms": "^2.1.3",
2022-06-05 10:16:31 +00:00
"p-timeout": "^5.1.0",
"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-02-21 13:53:21 +00:00
"pg": "^8.7.3",
2022-02-28 09:29:40 +00:00
"picsur-shared": "*",
2022-05-01 21:29:56 +00:00
"posix": "^4.2.0",
"qoi-img": "^1.1.0",
2022-02-21 09:46:03 +00:00
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
2022-03-12 19:34:11 +00:00
"rxjs": "^7.5.5",
2022-06-05 10:16:31 +00:00
"sharp": "^0.30.6",
2022-04-15 11:05:17 +00:00
"typeorm": "0.3.6",
2022-06-05 10:16:31 +00:00
"zod": "^3.17.3"
2022-02-21 09:46:03 +00:00
},
"devDependencies": {
2022-06-05 10:16:31 +00:00
"@nestjs/cli": "^8.2.6",
"@nestjs/schematics": "^8.0.11",
"@nestjs/testing": "^8.4.6",
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-06-09 14:42:13 +00:00
"@types/node": "^17.0.41",
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-06-09 14:42:13 +00:00
"@types/sharp": "^0.30.4",
2022-03-31 20:58:31 +00:00
"@types/supertest": "^2.0.12",
2022-06-09 14:42:13 +00:00
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
2022-06-05 10:16:31 +00:00
"eslint": "^8.17.0",
2022-03-04 13:49:41 +00:00
"eslint-config-prettier": "^8.5.0",
2022-02-23 10:10:25 +00:00
"eslint-plugin-prettier": "^4.0.0",
2022-04-15 11:05:17 +00:00
"prettier": "^2.6.2",
2022-02-23 10:10:25 +00:00
"source-map-support": "^0.5.21",
2022-05-01 21:29:56 +00:00
"ts-loader": "^9.3.0",
2022-06-05 10:16:31 +00:00
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "4.7.3",
"webpack": "^5.73.0"
2022-02-21 09:46:03 +00:00
}
}