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

111 lines
3.7 KiB
JSON
Raw Normal View History

2021-10-24 04:06:16 +02:00
{
"name": "@thream/api",
2023-07-02 18:58:58 +02:00
"version": "1.2.7",
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",
2023-04-02 23:45:47 +02:00
"imports": {
"#src/*": "./build/*"
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
},
2023-04-02 23:45:47 +02:00
"repository": {
"type": "git",
"url": "https://github.com/Thream/api"
},
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:typescript": "tsc",
"start": "node --enable-source-maps build/index.js",
2023-05-13 20:09:02 +02:00
"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\"",
2023-05-13 20:09:02 +02:00
"maildev": "maildev",
2021-10-24 04:18:18 +02:00
"generate": "plop",
"generate:jwt-secret": "node --enable-source-maps ./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-07-22 16:26:27 +02:00
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier . --check",
2021-10-24 04:18:18 +02:00
"lint:staged": "lint-staged",
2023-07-22 16:26:27 +02:00
"test": "cross-env NODE_ENV=test node --enable-source-maps --test build/",
2022-08-23 23:53:07 +02:00
"prisma:validate": "prisma validate",
2021-10-24 04:18:18 +02:00
"prisma:generate": "prisma generate",
2023-05-13 20:09:02 +02:00
"prisma:studio": "prisma studio --browser=none",
2021-10-24 04:18:18 +02:00
"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": {
2023-07-02 18:45:54 +02:00
"@fastify/cors": "8.3.0",
"@fastify/helmet": "11.0.0",
2023-07-22 16:26:27 +02:00
"@fastify/multipart": "7.6.0",
"@fastify/rate-limit": "8.0.3",
"@fastify/sensible": "5.2.0",
2023-07-22 16:26:27 +02:00
"@fastify/swagger": "8.8.0",
2023-07-02 18:45:54 +02:00
"@fastify/swagger-ui": "1.9.2",
2023-07-22 16:26:27 +02:00
"@prisma/client": "5.0.0",
"@sinclair/typebox": "0.29.6",
"@thream/socketio-jwt": "3.1.2",
2023-05-13 20:09:02 +02:00
"axios": "1.4.0",
2021-10-24 04:06:16 +02:00
"bcryptjs": "2.4.3",
2023-07-02 18:45:54 +02:00
"dotenv": "16.3.1",
2023-04-02 23:45:47 +02:00
"ejs": "3.1.9",
2023-07-22 16:26:27 +02:00
"fastify": "4.20.0",
"fastify-plugin": "4.5.1",
2022-04-08 21:36:29 +02:00
"form-data": "4.0.0",
"http-errors": "2.0.0",
2023-07-22 16:26:27 +02:00
"jsonwebtoken": "9.0.1",
2021-10-24 04:06:16 +02:00
"ms": "2.1.3",
2023-07-22 16:26:27 +02:00
"nodemailer": "6.9.4",
2023-05-13 20:09:02 +02:00
"read-pkg": "8.0.0",
2023-07-02 18:45:54 +02:00
"socket.io": "4.7.1"
2021-10-24 04:06:16 +02:00
},
"devDependencies": {
2023-07-22 16:26:27 +02:00
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
2023-05-13 20:09:02 +02:00
"@saithodev/semantic-release-backmerge": "3.2.0",
2022-04-08 21:36:29 +02:00
"@semantic-release/git": "10.0.1",
2023-04-02 23:45:47 +02:00
"@swc/cli": "0.1.62",
2023-07-22 16:26:27 +02:00
"@swc/core": "1.3.70",
2023-05-13 20:09:02 +02:00
"@tsconfig/strictest": "2.0.1",
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",
2023-04-02 23:45:47 +02:00
"@types/ejs": "3.1.2",
"@types/http-errors": "2.0.1",
2023-05-13 20:09:02 +02:00
"@types/jsonwebtoken": "9.0.2",
2021-10-24 04:06:16 +02:00
"@types/ms": "0.7.31",
2023-07-22 16:26:27 +02:00
"@types/node": "20.4.3",
2023-07-02 18:45:54 +02:00
"@types/nodemailer": "6.4.8",
"@types/sinon": "10.0.15",
2023-07-22 16:26:27 +02:00
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"chokidar": "3.5.3",
2023-07-02 18:45:54 +02:00
"concurrently": "8.2.0",
2021-10-24 04:06:16 +02:00
"cross-env": "7.0.3",
2023-07-02 18:45:54 +02:00
"editorconfig-checker": "5.1.1",
2023-07-22 16:26:27 +02:00
"eslint": "8.45.0",
"eslint-config-conventions": "11.0.1",
2023-04-02 23:45:47 +02:00
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
2023-07-22 16:26:27 +02:00
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
2023-07-22 16:26:27 +02:00
"eslint-plugin-unicorn": "48.0.0",
2023-01-11 18:02:38 +01:00
"husky": "8.0.3",
2023-07-02 18:45:54 +02:00
"lint-staged": "13.2.3",
2023-07-22 16:26:27 +02:00
"maildev": "2.1.0",
2023-07-02 18:45:54 +02:00
"markdownlint-cli2": "0.8.1",
"markdownlint-rule-relative-links": "2.1.0",
2023-04-02 23:45:47 +02:00
"plop": "3.1.2",
2023-07-22 16:26:27 +02:00
"prettier": "3.0.0",
"prisma": "5.0.0",
2023-07-02 18:45:54 +02:00
"rimraf": "5.0.1",
2023-07-22 16:26:27 +02:00
"semantic-release": "21.0.7",
2023-07-02 18:45:54 +02:00
"sinon": "15.2.0",
2023-07-22 16:26:27 +02:00
"typescript": "5.1.6"
2021-10-24 04:06:16 +02:00
}
}