2
1
mirror of https://github.com/Thream/api.git synced 2024-07-12 15:50:11 +02:00
api/package.json
2021-11-19 21:52:22 +01:00

99 lines
3.1 KiB
JSON

{
"name": "@thream/api",
"version": "0.0.1",
"description": "Thream's application programming interface to stay close with your friends and communities.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Thream/api"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "rimraf ./build && tsc",
"start": "cross-env NODE_ENV=production node build/index.js",
"dev": "concurrently -k -n \"TypeScript,Node\" -p \"[{name}]\" -c \"blue,green\" \"tsc --watch\" \"cross-env NODE_ENV=development nodemon -e js,json,yaml build/index.js\"",
"generate": "plop",
"lint:commit": "commitlint",
"lint:docker": "dockerfilelint './Dockerfile'",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint '**/*.md' --dot --ignore 'node_modules'",
"lint:typescript": "eslint '**/*.{js,ts,jsx,tsx}'",
"lint:staged": "lint-staged",
"test": "jest",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"release": "semantic-release",
"postinstall": "husky install"
},
"dependencies": {
"@prisma/client": "3.5.0",
"@sinclair/typebox": "0.20.6",
"axios": "0.24.0",
"bcryptjs": "2.4.3",
"dotenv": "10.0.0",
"ejs": "3.1.6",
"fastify": "3.24.0",
"fastify-cors": "6.0.2",
"fastify-helmet": "5.3.2",
"fastify-multipart": "5.1.0",
"fastify-plugin": "3.0.0",
"fastify-rate-limit": "5.6.2",
"fastify-sensible": "3.1.2",
"fastify-static": "4.5.0",
"fastify-swagger": "4.12.6",
"fastify-url-data": "3.0.3",
"http-errors": "1.8.1",
"jsonwebtoken": "8.5.1",
"ms": "2.1.3",
"nodemailer": "6.7.1",
"read-pkg": "5.2.0",
"socket.io": "4.4.0"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@saithodev/semantic-release-backmerge": "2.1.0",
"@types/bcryptjs": "2.4.2",
"@types/busboy": "0.3.0",
"@types/ejs": "3.1.0",
"@types/http-errors": "1.8.1",
"@types/jest": "27.0.2",
"@types/jsonwebtoken": "8.5.6",
"@types/ms": "0.7.31",
"@types/node": "16.11.7",
"@types/nodemailer": "6.4.4",
"@typescript-eslint/eslint-plugin": "4.33.0",
"concurrently": "6.4.0",
"cross-env": "7.0.3",
"dockerfilelint": "1.8.0",
"editorconfig-checker": "4.0.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-unicorn": "38.0.1",
"husky": "7.0.4",
"jest": "27.3.1",
"jest-mock-extended": "2.0.4",
"jest-ts-webcompat-resolver": "1.0.0",
"lint-staged": "12.0.2",
"markdownlint-cli": "0.29.0",
"nodemon": "2.0.15",
"plop": "2.7.6",
"prettier": "2.4.1",
"prisma": "3.5.0",
"rimraf": "3.0.2",
"semantic-release": "18.0.0",
"ts-jest": "27.0.7",
"typescript": "4.5.2"
}
}