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

109 lines
3.5 KiB
JSON
Raw Normal View History

2021-10-24 04:06:16 +02:00
{
"name": "@thream/api",
2022-12-13 11:40:30 +01:00
"version": "1.2.3",
2021-10-24 04:18:18 +02:00
"description": "Thream's application programming interface to stay close with your friends and communities.",
2021-10-24 04:06:16 +02:00
"private": true,
"type": "module",
2021-10-24 04:18:18 +02:00
"repository": {
"type": "git",
"url": "https://github.com/Thream/api"
2021-10-24 04:06:16 +02:00
},
2021-10-24 04:18:18 +02:00
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
2021-10-24 04:06:16 +02:00
},
"scripts": {
2023-01-11 18:02:38 +01:00
"build": "rimraf ./build && swc ./src --out-dir ./build",
"build:dev": "swc ./src --out-dir ./build --watch",
2023-01-11 18:02:38 +01:00
"build:typescript": "tsc",
2022-03-21 20:17:43 +01:00
"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\"",
2021-10-24 04:18:18 +02:00
"generate": "plop",
"generate:jwt-secret": "node ./build/scripts/generate-jwt-secret.js",
2021-10-24 04:06:16 +02:00
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
2022-08-23 23:53:07 +02:00
"lint:markdown": "markdownlint-cli2",
2023-01-11 18:02:38 +01:00
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
2022-08-29 18:10:17 +02:00
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
2021-10-24 04:18:18 +02:00
"lint:staged": "lint-staged",
2022-04-07 16:56:07 +02:00
"test": "cross-env NODE_ENV=test c8 tap",
2022-08-23 23:53:07 +02:00
"prisma:validate": "prisma validate",
2021-10-24 04:18:18 +02:00
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"release": "semantic-release",
2021-10-24 04:06:16 +02:00
"postinstall": "husky install"
},
"dependencies": {
"@fastify/cors": "8.2.0",
"@fastify/helmet": "10.1.0",
"@fastify/multipart": "7.3.0",
"@fastify/rate-limit": "7.6.0",
"@fastify/sensible": "5.2.0",
"@fastify/swagger": "8.2.1",
"@fastify/swagger-ui": "1.3.0",
2023-01-11 18:02:38 +01:00
"@prisma/client": "4.8.1",
"@sinclair/typebox": "0.25.20",
"@thream/socketio-jwt": "3.0.2",
"axios": "1.2.2",
2021-10-24 04:06:16 +02:00
"bcryptjs": "2.4.3",
"dotenv": "16.0.3",
2022-06-29 05:59:30 +02:00
"ejs": "3.1.8",
2023-01-11 18:02:38 +01:00
"fastify": "4.11.0",
"fastify-plugin": "4.4.0",
2022-04-08 21:36:29 +02:00
"form-data": "4.0.0",
"http-errors": "2.0.0",
2023-01-11 18:02:38 +01:00
"jsonwebtoken": "9.0.0",
2021-10-24 04:06:16 +02:00
"ms": "2.1.3",
"nodemailer": "6.8.0",
"read-pkg": "7.1.0",
"socket.io": "4.5.4"
2021-10-24 04:06:16 +02:00
},
"devDependencies": {
2023-01-11 18:02:38 +01:00
"@commitlint/cli": "17.4.1",
"@commitlint/config-conventional": "17.4.0",
2022-03-01 23:00:49 +01:00
"@saithodev/semantic-release-backmerge": "2.1.2",
2022-04-08 21:36:29 +02:00
"@semantic-release/git": "10.0.1",
2022-04-07 16:56:07 +02:00
"@swc/cli": "0.1.57",
2023-01-11 18:02:38 +01:00
"@swc/core": "1.3.25",
"@tsconfig/strictest": "1.0.2",
2021-10-24 04:06:16 +02:00
"@types/bcryptjs": "2.4.2",
2022-04-07 16:56:07 +02:00
"@types/busboy": "1.5.0",
2022-06-29 05:59:30 +02:00
"@types/ejs": "3.1.1",
"@types/http-errors": "1.8.2",
2023-01-11 18:02:38 +01:00
"@types/jsonwebtoken": "9.0.0",
2021-10-24 04:06:16 +02:00
"@types/ms": "0.7.31",
2023-01-11 18:02:38 +01:00
"@types/node": "18.11.18",
"@types/nodemailer": "6.4.7",
2022-08-23 23:53:07 +02:00
"@types/sinon": "10.0.13",
2022-06-29 05:59:30 +02:00
"@types/tap": "15.0.7",
2023-01-11 18:02:38 +01:00
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
2022-08-23 23:53:07 +02:00
"c8": "7.12.0",
"concurrently": "7.6.0",
2021-10-24 04:06:16 +02:00
"cross-env": "7.0.3",
"editorconfig-checker": "4.0.2",
2023-01-11 18:02:38 +01:00
"eslint": "8.31.0",
"eslint-config-conventions": "6.0.0",
2023-01-11 18:02:38 +01:00
"eslint-config-prettier": "8.6.0",
2022-04-07 16:56:07 +02:00
"eslint-plugin-import": "2.26.0",
2022-08-23 23:53:07 +02:00
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "45.0.2",
2023-01-11 18:02:38 +01:00
"husky": "8.0.3",
"lint-staged": "13.1.0",
2023-01-11 18:02:38 +01:00
"markdownlint-cli2": "0.6.0",
"markdownlint-rule-relative-links": "1.1.1",
"nodemon": "2.0.20",
2022-06-29 05:59:30 +02:00
"plop": "3.1.1",
2023-01-11 18:02:38 +01:00
"prettier": "2.8.2",
"prisma": "4.8.1",
2021-10-24 04:06:16 +02:00
"rimraf": "3.0.2",
2022-08-23 23:53:07 +02:00
"semantic-release": "19.0.5",
2023-01-11 18:02:38 +01:00
"sinon": "15.0.1",
"tap": "16.3.3",
"typescript": "4.9.4"
2021-10-24 04:06:16 +02:00
}
}