generated from filename24/monorepo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "bot",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "yarn build && yarn start:node",
"start:node": "node --enable-source-maps --experimental-specifier-resolution=node .",
"build": "tsc && tsc-alias && yarn sentry:sourcemaps",
"lint": "eslint . --ext .ts",
"format": "prettier --write '**/*.ts' && eslint . --ext .ts --fix",
"dev": "tsx src/index.ts --watch",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org infinite-studio-48318f76f --project tempo ./dist && sentry-cli sourcemaps upload --org infinite-studio-48318f76f --project tempo ./dist"
},
"dependencies": {
"@tempo/database": "workspace:^",
"chalk": "5.3.0",
"discord.js": "^14.13.0",
"dokdo": "^1.0.1",
"dotenv": "^16.3.1",
"node-schedule": "^2.1.1",
"rotating-file-stream": "^3.1.1",
"tslog": "^4.9.1",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@sentry/cli": "^2.20.6",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"@types/node-schedule": "^2",
"@types/uuid": "^9.0.1",
"eslint-config-tempo": "workspace:^",
"nodemon": "^3.0.1",
"tsc-alias": "^1.8.7",
"tsconfig": "workspace:^",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"eslintIgnore": [
"node_modules",
"example.*",
"eslintrc.*"
],
"engines": {
"node": ">=16.9"
},
"private": true
}