-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.42 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.42 KB
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
{
"name": "uoa-makers-bot",
"version": "1.0.0",
"description": "Bot for the UOA Makers Discord server.",
"main": "dist/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"dev": "nodemon --watch 'src/**/*.ts' -e ts --exec 'pnpm run build:js && pnpm run start'",
"build": "pnpm run build:types && pnpm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions '.ts,.tsx'",
"start": "node .",
"deploy-commands": "node scripts/deployCommands.js",
"commitlint": "commitlint -e $GIT_PARAMS",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
},
"author": "Matthew Taylor",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.11",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "3.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
"babel-plugin-module-resolver": "^5.0.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1"
}
}