2
1
mirror of https://github.com/Thream/api.git synced 2024-07-21 03:38:31 +02:00
api/package.json
2023-09-18 20:41:25 +00:00

111 lines
3.7 KiB
JSON

{
"name": "@thream/api",
"version": "1.2.9",
"description": "Thream's application programming interface to stay close with your friends and communities.",
"private": true,
"type": "module",
"imports": {
"#src/*": "./build/*"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Thream/api"
},
"scripts": {
"build": "rimraf ./build && swc ./src --out-dir ./build",
"build:typescript": "tsc",
"start": "node --enable-source-maps build/index.js",
"dev:build": "swc ./src --out-dir ./build --watch",
"dev": "concurrently --kill-others --names \"TypeScript,Node,Maildev,Prisma Studio\" \"npm run dev:build\" \"cross-env NODE_ENV=development node --watch --enable-source-maps build/index.js\" \"npm run maildev\" \"npm run prisma:studio\"",
"maildev": "maildev",
"generate": "plop",
"generate:jwt-secret": "node --enable-source-maps ./build/scripts/generate-jwt-secret.js",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier . --check",
"lint:staged": "lint-staged",
"test": "cross-env NODE_ENV=test node --enable-source-maps --test build/",
"prisma:validate": "prisma validate",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio --browser=none",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"release": "semantic-release",
"postinstall": "husky install"
},
"dependencies": {
"@fastify/cors": "8.3.0",
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "7.7.3",
"@fastify/rate-limit": "8.0.3",
"@fastify/sensible": "5.3.0",
"@fastify/swagger": "8.10.0",
"@fastify/swagger-ui": "1.9.3",
"@prisma/client": "5.3.1",
"@sinclair/typebox": "0.31.15",
"@thream/socketio-jwt": "3.1.3",
"axios": "1.5.0",
"bcryptjs": "2.4.3",
"dotenv": "16.3.1",
"ejs": "3.1.9",
"fastify": "4.23.2",
"fastify-plugin": "4.5.1",
"form-data": "4.0.0",
"http-errors": "2.0.0",
"jsonwebtoken": "9.0.2",
"ms": "2.1.3",
"nodemailer": "6.9.5",
"read-pkg": "8.1.0",
"socket.io": "4.7.2"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@saithodev/semantic-release-backmerge": "3.2.0",
"@semantic-release/git": "10.0.1",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.85",
"@tsconfig/strictest": "2.0.2",
"@types/bcryptjs": "2.4.4",
"@types/busboy": "1.5.1",
"@types/ejs": "3.1.2",
"@types/http-errors": "2.0.2",
"@types/jsonwebtoken": "9.0.3",
"@types/ms": "0.7.31",
"@types/node": "20.6.2",
"@types/nodemailer": "6.4.10",
"@types/sinon": "10.0.16",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"chokidar": "3.5.3",
"concurrently": "8.2.1",
"cross-env": "7.0.3",
"editorconfig-checker": "5.1.1",
"eslint": "8.49.0",
"eslint-config-conventions": "11.0.1",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "48.0.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"maildev": "2.1.0",
"markdownlint-cli2": "0.10.0",
"markdownlint-rule-relative-links": "2.1.0",
"plop": "4.0.0",
"prettier": "3.0.3",
"prisma": "5.3.1",
"rimraf": "5.0.1",
"semantic-release": "21.1.1",
"sinon": "16.0.0",
"typescript": "5.2.2"
}
}