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

102 lines
3.2 KiB
JSON
Raw Normal View History

2021-10-24 04:06:16 +02:00
{
"name": "@thream/api",
2022-04-09 00:10:34 +02:00
"version": "1.0.0",
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": {
"build": "rimraf ./build && swc ./src --out-dir ./build && tsc",
"build:dev": "swc ./src --out-dir ./build --watch",
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",
2021-10-24 04:06:16 +02:00
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
2022-02-07 17:18:11 +01:00
"lint:markdown": "markdownlint \"**/*.md\" --dot --ignore-path \".gitignore\"",
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
"lint:prettier": "prettier \".\" --check",
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",
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": {
2022-04-07 16:56:07 +02:00
"@prisma/client": "3.12.0",
2022-02-19 20:08:25 +01:00
"@sinclair/typebox": "0.23.4",
2022-04-07 16:56:07 +02:00
"@thream/socketio-jwt": "3.0.0",
"axios": "0.26.1",
2021-10-24 04:06:16 +02:00
"bcryptjs": "2.4.3",
2022-02-07 17:18:11 +01:00
"dotenv": "16.0.0",
2021-10-24 04:06:16 +02:00
"ejs": "3.1.6",
2022-04-07 16:56:07 +02:00
"fastify": "3.28.0",
2022-02-28 16:02:09 +01:00
"fastify-cors": "6.0.3",
"fastify-helmet": "7.0.1",
2022-02-19 20:08:25 +01:00
"fastify-multipart": "5.3.1",
2022-02-07 17:18:11 +01:00
"fastify-plugin": "3.0.1",
"fastify-rate-limit": "5.8.0",
"fastify-sensible": "3.1.2",
2022-04-07 16:56:07 +02:00
"fastify-swagger": "5.1.0",
2022-04-08 21:36:29 +02:00
"form-data": "4.0.0",
"http-errors": "2.0.0",
2021-10-24 04:06:16 +02:00
"jsonwebtoken": "8.5.1",
"ms": "2.1.3",
2022-03-21 16:08:33 +01:00
"nodemailer": "6.7.3",
"read-pkg": "7.1.0",
"socket.io": "4.4.1"
2021-10-24 04:06:16 +02:00
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
2022-02-19 20:08:25 +01:00
"@commitlint/config-conventional": "16.2.1",
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",
"@swc/core": "1.2.164",
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",
2021-10-24 04:18:18 +02:00
"@types/ejs": "3.1.0",
"@types/http-errors": "1.8.2",
"@types/jsonwebtoken": "8.5.8",
2021-10-24 04:06:16 +02:00
"@types/ms": "0.7.31",
2022-04-07 16:56:07 +02:00
"@types/node": "17.0.23",
2021-10-24 04:18:18 +02:00
"@types/nodemailer": "6.4.4",
"@types/sinon": "10.0.11",
"@types/tap": "15.0.6",
2022-04-07 16:56:07 +02:00
"@typescript-eslint/eslint-plugin": "5.18.0",
2022-03-21 16:08:33 +01:00
"c8": "7.11.0",
2022-04-07 16:56:07 +02:00
"concurrently": "7.1.0",
2021-10-24 04:06:16 +02:00
"cross-env": "7.0.3",
"editorconfig-checker": "4.0.2",
2022-04-07 16:56:07 +02:00
"eslint": "8.12.0",
"eslint-config-conventions": "2.0.0",
"eslint-config-prettier": "8.5.0",
2022-04-07 16:56:07 +02:00
"eslint-plugin-import": "2.26.0",
2021-10-24 04:18:18 +02:00
"eslint-plugin-prettier": "4.0.0",
2022-02-19 20:08:25 +01:00
"eslint-plugin-promise": "6.0.0",
2022-04-07 16:56:07 +02:00
"eslint-plugin-unicorn": "42.0.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
2022-02-19 20:08:25 +01:00
"markdownlint-cli": "0.31.1",
"nodemon": "2.0.15",
"plop": "3.0.5",
2022-04-07 16:56:07 +02:00
"prettier": "2.6.2",
"prisma": "3.12.0",
2021-10-24 04:06:16 +02:00
"rimraf": "3.0.2",
"semantic-release": "19.0.2",
"sinon": "13.0.1",
2022-04-07 16:56:07 +02:00
"tap": "16.0.1",
"typescript": "4.6.3"
2021-10-24 04:06:16 +02:00
}
}