xyter/package.json
Vermium Sifell 2e0541b2a1
v1.0.0 (#496)
* Fix missing packages and make signing commits as default in VS Code (#491)

* Added missing package and improve user/dev experience (#486)

* fix: 📦 add date-fns

Added missing date-fns to dependency list

* style(git): 🧑‍💻 start using Conventional Commits

Started using a commit convention called Conventional Commits (conventionalcommits.org)

* chore(github): 🚸 Remove issue templates

Removed issue templates since they confuses people and makes less people go through and make an issue

* feat(git): 🧑‍💻 vs code git commit signing (#488)

Enable commit signing in VS Code by default

* 🚸 improve dev experience in vs code

* 📦 Removed unused and updated packages

* Added missing package and improve user/dev experience (#486)

* fix: 📦 add date-fns

Added missing date-fns to dependency list

* style(git): 🧑‍💻 start using Conventional Commits

Started using a commit convention called Conventional Commits (conventionalcommits.org)

* chore(github): 🚸 Remove issue templates

Removed issue templates since they confuses people and makes less people go through and make an issue

* feat(git): 🧑‍💻 vs code git commit signing (#488)

Enable commit signing in VS Code by default

* chore: ⚰️ remove config for unused github apps (#492)

Removed configuration files for licrc and renovate since they are not used anymore

* Updated CI workflows (#494)

* ci(github): 👷 add arm64 support and run workflow with cron and on push and pull request

Added support for linux/arm64 platform, I also added a cronjob and added pull_request as triggers to run the workflow

* ci: 🚸 add ghcr.io as registry too

Added ghcr.io as a registry aswell as keeping docker hub too

* ci: 👷 add release workflow (semantic release)

Added a new workflow for semantic releases

* ci: 💚 remove strategy

Removed strategy's since they were not used

* ci: 💚 change frmo master to main

Change from wrong branch (master) to main in workflow

* chore: ✏️ master should be main

Changed from master to main in releaserc

* Update .deepsource.toml (#487)

Co-authored-by: DeepSource Bot <bot@deepsource.io>

* Format code with prettier (#489)

This commit fixes the style issues introduced in 502f8b1 according to the output
from prettier.

Details: https://deepsource.io/gh/ZynerOrg/xyter/transform/2d6f5e66-ae8b-4261-92a6-688077649213/

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>

* Fix missing packages and make signing commits as default in VS Code (#491) (#493)

* Added missing package and improve user/dev experience (#486)

* fix: 📦 add date-fns

Added missing date-fns to dependency list

* style(git): 🧑‍💻 start using Conventional Commits

Started using a commit convention called Conventional Commits (conventionalcommits.org)

* chore(github): 🚸 Remove issue templates

Removed issue templates since they confuses people and makes less people go through and make an issue

* feat(git): 🧑‍💻 vs code git commit signing (#488)

Enable commit signing in VS Code by default

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Co-authored-by: DeepSource Bot <bot@deepsource.io>
2022-11-04 15:35:01 +01:00

69 lines
1.9 KiB
JSON

{
"name": "xyter",
"version": "3.1.0",
"description": "Earn credits while chatting! And more",
"main": "dist/index.js",
"scripts": {
"dev": "tsc --watch & NODE_ENV=development nodemon dist",
"build": "tsc -p .",
"prisma:generate": "prisma generate",
"test": "jest",
"start": "node dist",
"start:migrate:prod": "prisma migrate deploy && npm run start",
"prettier-format": "prettier \"src/**/*.ts\" --write",
"lint": "eslint ./src --ext .ts"
},
"keywords": [
"Zyner",
"xyter",
"controlpanel",
"controlpanel.gg"
],
"repository": {
"type": "git",
"url": "https://github.com/ZynerOrg/xyter.git"
},
"author": "Vermium Sifell <vermium@zyner.org> (https://zyner.org)",
"contributors": [
"Joshua Schmitt <me@jqshuv.xyz> (https://jqshuv.xyz)"
],
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ZynerOrg/xyter/issues",
"email": "vermium@zyner.org"
},
"dependencies": {
"@prisma/client": "^4.5.0",
"@types/i18next-fs-backend": "^1.1.2",
"axios": "^1.0.0",
"chance": "^1.1.8",
"date-fns": "^2.29.3",
"discord.js": "^14.0.0",
"dotenv": "^16.0.1",
"node-schedule": "^2.1.0",
"typescript": "^4.8.4",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
"@types/chance": "1.1.3",
"@types/node-schedule": "2.1.0",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-prettier": "4.2.1",
"lint-staged": "13.0.3",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"prisma": "4.5.0",
"semantic-release": "^19.0.5"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}