105 lines
3.4 KiB
JSON
105 lines
3.4 KiB
JSON
{
|
|
"name": "@thream/api",
|
|
"version": "1.2.0",
|
|
"description": "Thream's application programming interface to stay close with your friends and communities.",
|
|
"private": true,
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Thream/api"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=8.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf ./build && swc ./src --out-dir ./build && tsc",
|
|
"build:dev": "swc ./src --out-dir ./build --watch",
|
|
"start": "node build/index.js",
|
|
"dev": "concurrently -k -n \"TypeScript,Node\" -p \"[{name}]\" -c \"blue,green\" \"npm run build:dev\" \"cross-env NODE_ENV=development nodemon build/index.js\"",
|
|
"generate": "plop",
|
|
"generate:jwt-secret": "node ./build/scripts/generate-jwt-secret.js",
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint-cli2",
|
|
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
|
|
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
|
"lint:staged": "lint-staged",
|
|
"test": "cross-env NODE_ENV=test c8 tap",
|
|
"prisma:validate": "prisma validate",
|
|
"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": {
|
|
"@fastify/cors": "8.1.0",
|
|
"@fastify/helmet": "10.0.1",
|
|
"@fastify/multipart": "7.2.0",
|
|
"@fastify/rate-limit": "7.4.0",
|
|
"@fastify/sensible": "5.1.1",
|
|
"@fastify/swagger": "7.6.1",
|
|
"@prisma/client": "4.4.0",
|
|
"@sinclair/typebox": "0.24.44",
|
|
"@thream/socketio-jwt": "3.0.1",
|
|
"axios": "0.26.1",
|
|
"bcryptjs": "2.4.3",
|
|
"dotenv": "16.0.3",
|
|
"ejs": "3.1.8",
|
|
"fastify": "4.7.0",
|
|
"fastify-plugin": "4.2.1",
|
|
"form-data": "4.0.0",
|
|
"http-errors": "2.0.0",
|
|
"jsonwebtoken": "8.5.1",
|
|
"ms": "2.1.3",
|
|
"nodemailer": "6.8.0",
|
|
"read-pkg": "7.1.0",
|
|
"socket.io": "4.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "17.1.2",
|
|
"@commitlint/config-conventional": "17.1.0",
|
|
"@saithodev/semantic-release-backmerge": "2.1.2",
|
|
"@semantic-release/git": "10.0.1",
|
|
"@swc/cli": "0.1.57",
|
|
"@swc/core": "1.3.4",
|
|
"@types/bcryptjs": "2.4.2",
|
|
"@types/busboy": "1.5.0",
|
|
"@types/ejs": "3.1.1",
|
|
"@types/http-errors": "1.8.2",
|
|
"@types/jsonwebtoken": "8.5.9",
|
|
"@types/ms": "0.7.31",
|
|
"@types/node": "18.8.1",
|
|
"@types/nodemailer": "6.4.6",
|
|
"@types/sinon": "10.0.13",
|
|
"@types/tap": "15.0.7",
|
|
"@typescript-eslint/eslint-plugin": "5.39.0",
|
|
"@typescript-eslint/parser": "5.39.0",
|
|
"c8": "7.12.0",
|
|
"concurrently": "7.4.0",
|
|
"cross-env": "7.0.3",
|
|
"editorconfig-checker": "4.0.2",
|
|
"eslint": "8.24.0",
|
|
"eslint-config-conventions": "5.0.0",
|
|
"eslint-config-prettier": "8.5.0",
|
|
"eslint-plugin-import": "2.26.0",
|
|
"eslint-plugin-prettier": "4.2.1",
|
|
"eslint-plugin-promise": "6.0.1",
|
|
"eslint-plugin-unicorn": "44.0.0",
|
|
"husky": "8.0.1",
|
|
"lint-staged": "13.0.3",
|
|
"markdownlint-cli2": "0.5.1",
|
|
"nodemon": "2.0.20",
|
|
"plop": "3.1.1",
|
|
"prettier": "2.7.1",
|
|
"prisma": "4.4.0",
|
|
"rimraf": "3.0.2",
|
|
"semantic-release": "19.0.5",
|
|
"sinon": "14.0.1",
|
|
"tap": "16.3.0",
|
|
"typescript": "4.8.4"
|
|
}
|
|
}
|