Files
discordeno/package.json
Jonathan Ho 4451608dfa test: add gateway integration test (#2756)
* test: add gateway integration test

* test(gateway): fix connection test

* test(gateway): add heartbeat test

* ci: add integration test

* fix: add uWebSockets.js

* ci: add timeout

* test(utils): remove old test

* Revert "test(utils): remove old test"

This reverts commit 04fb6dd4b5.

* test(gateway): fix uws server

* test(gateway): fix type

* chore: update codecov flag

* test(gateway): remove dev code

---------

Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
2023-02-05 10:58:40 -06:00

49 lines
1.5 KiB
JSON

{
"name": "discordeno-monorepo",
"version": "19.0.0-alpha.1",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"fmt": "turbo run fmt",
"build:type": "turbo run build:type",
"release-build": "turbo run release-build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test:type": "turbo run build:type",
"test:unit-coverage": "turbo run test:unit-coverage",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:deno-unit": "turbo run test:deno-unit",
"test:e2e": "turbo run test:e2e",
"test:test-type": "turbo run test:test-type",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"build:doc": "typedoc --plugin typedoc-plugin-markdown --out ./apps/site/docs/generated/ "
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-discordeno": "*",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"turbo": "^1.6.3",
"typedoc": "^0.23.21",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --ignore-unknown --write",
"*.{js,ts,tsx}": [
"eslint --fix --config ./packages/eslint-config-discordeno/index.js --resolve-plugins-relative-to ."
]
},
"packageManager": "yarn@3.3.0"
}