Skip to content

Commit

Permalink
chore: enable source maps for stack trace and other cli flags
Browse files Browse the repository at this point in the history
  • Loading branch information
imnaiyar committed Oct 11, 2024
1 parent a630eae commit fcf9226
Showing 1 changed file with 129 additions and 129 deletions.
258 changes: 129 additions & 129 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,129 +1,129 @@
{
"name": "skyhelper",
"version": "7.0.0",
"description": "A Bot for Sky: Children of the Light",
"main": "dist/bot/index.js",
"type": "module",
"keywords": [
"SkyCoTL",
"SkyShards",
"SkyDiscordBot",
"Sky: Children of the Light"
],
"scripts": {
"start": "npm run build:prod && node dist/bot/index.js",
"build:prod": "tsc -p tsconfig.json && npm run sentry:sourcemaps",
"build:ci": "tsc -p tsconfig.json",
"lint": "eslint src",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"dev": "bun run src/bot/index.ts",
"commands:prod": "node dist/bot/libs/registerCommands.js",
"commands:bun": "bun run src/bot/libs/registerCommands.ts",
"format": "prettier --write src",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org skyhelper-09 --project node ./dist && sentry-cli sourcemaps upload --org skyhelper-09 --project node ./dist",
"setup": "node scripts/env-cli.js",
"prepare": "husky"
},
"author": "Naiyar Imam",
"license": "MIT",
"dependencies": {
"@imnaiyar/framework": "^1.2.1",
"@napi-rs/canvas": "^0.1.52",
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/platform-express": "^10.3.8",
"@sapphire/stopwatch": "^1.5.2",
"@sapphire/type": "^2.4.4",
"@sentry/cli": "^2.32.2",
"@sentry/node": "^8.17.0",
"@sentry/profiling-node": "^8.17.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"cropify": "^1.0.9",
"discord.js": "14.16.2",
"dotenv": "^16.3.1",
"express": "^4.20.0",
"i18next": "^23.11.5",
"i18next-fs-backend": "^2.3.1",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.43",
"mongoose": "^7.5.0",
"node-cron": "^3.0.3",
"skyhelper-utils": "^1.3.1",
"table": "^6.8.1",
"topgg-autoposter": "^2.0.2"
},
"imports": {
"#bot/*": [
"./dist/bot/*.js"
],
"#handlers": [
"./dist/bot/handlers/index.js"
],
"#handlers/*": [
"./dist/bot/handlers/*.js"
],
"#commands/*": [
"./dist/bot/commands/*.js"
],
"#root/*": [
"./*"
],
"#schemas/*": [
"./dist/bot/database/schemas/*.js"
],
"#structures/*": [
"./dist/bot/structures/*.js"
],
"#structures": [
"./dist/bot/structures/index.js"
],
"#libs/*": [
"./dist/bot/libs/*.js"
],
"#libs": [
"./dist/bot/libs/index.js"
],
"#api/*": [
"./dist/api/*.js"
],
"#utils": [
"./dist/bot/utils/index.js"
]
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/globals": "^29.7.0",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/moment-duration-format": "^2.2.6",
"@types/node": "^20.12.5",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.8.2",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.0.3",
"prettier-plugin-ejs": "^0.0.18",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.4",
"typescript": "^5.6.2"
},
"trustedDependencies": [
"@nestjs/core",
"@sapphire/type"
],
"packageManager": "[email protected]"
}
{
"name": "skyhelper",
"version": "7.0.0",
"description": "A Bot for Sky: Children of the Light",
"main": "dist/bot/index.js",
"type": "module",
"keywords": [
"SkyCoTL",
"SkyShards",
"SkyDiscordBot",
"Sky: Children of the Light"
],
"scripts": {
"start": "npm run build:prod && node dist/bot/index.js --enable-source-maps",
"build:prod": "tsc -p tsconfig.json && npm run sentry:sourcemaps",
"build:ci": "tsc -p tsconfig.json",
"lint": "eslint --fix src",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"dev": "bun run src/bot/index.ts",
"commands:prod": "node dist/bot/libs/registerCommands.js",
"commands:bun": "bun run src/bot/libs/registerCommands.ts",
"format": "prettier --write --ignore-unknown src",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org skyhelper-09 --project node ./dist && sentry-cli sourcemaps upload --org skyhelper-09 --project node ./dist",
"setup": "node scripts/env-cli.js",
"prepare": "husky"
},
"author": "Naiyar Imam",
"license": "MIT",
"dependencies": {
"@imnaiyar/framework": "^1.2.1",
"@napi-rs/canvas": "^0.1.52",
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/platform-express": "^10.3.8",
"@sapphire/stopwatch": "^1.5.2",
"@sapphire/type": "^2.4.4",
"@sentry/cli": "^2.32.2",
"@sentry/node": "^8.17.0",
"@sentry/profiling-node": "^8.17.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"cropify": "^1.0.9",
"discord.js": "14.16.2",
"dotenv": "^16.3.1",
"express": "^4.20.0",
"i18next": "^23.11.5",
"i18next-fs-backend": "^2.3.1",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.43",
"mongoose": "^7.5.0",
"node-cron": "^3.0.3",
"skyhelper-utils": "^1.3.1",
"table": "^6.8.1",
"topgg-autoposter": "^2.0.2"
},
"imports": {
"#bot/*": [
"./dist/bot/*.js"
],
"#handlers": [
"./dist/bot/handlers/index.js"
],
"#handlers/*": [
"./dist/bot/handlers/*.js"
],
"#commands/*": [
"./dist/bot/commands/*.js"
],
"#root/*": [
"./*"
],
"#schemas/*": [
"./dist/bot/database/schemas/*.js"
],
"#structures/*": [
"./dist/bot/structures/*.js"
],
"#structures": [
"./dist/bot/structures/index.js"
],
"#libs/*": [
"./dist/bot/libs/*.js"
],
"#libs": [
"./dist/bot/libs/index.js"
],
"#api/*": [
"./dist/api/*.js"
],
"#utils": [
"./dist/bot/utils/index.js"
]
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/globals": "^29.7.0",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/moment-duration-format": "^2.2.6",
"@types/node": "^20.12.5",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.8.2",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.0.3",
"prettier-plugin-ejs": "^0.0.18",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.4",
"typescript": "^5.6.2"
},
"trustedDependencies": [
"@nestjs/core",
"@sapphire/type"
],
"packageManager": "[email protected]"
}

0 comments on commit fcf9226

Please sign in to comment.