-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@devsnowflake/yarnbot",
"version": "1.0.0",
"description": "Official community Discord bot for SnowflakeDev Community.",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "rimraf dist && tsc",
"dev": "yarn build && node .",
"build:check": "tsc --noEmit --incremental false",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.{ts,js,json,yaml,yml}",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevSnowflake/yarnbot.git"
},
"keywords": [
"typescript-template",
"template",
"project"
],
"author": "Snowflake Studio ❄️",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevSnowflake/yarnbot/issues"
},
"homepage": "https://github.com/DevSnowflake/yarnbot#readme",
"devDependencies": {
"@types/node": "^16.11.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"discord-api-types": "^0.24.0",
"eslint": "^8.1.0",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"bufferutil": "^4.0.5",
"common-tags": "^1.8.0",
"dayjs": "^1.10.7",
"discord.js": "^13.2.0",
"discord.tsx": "^2.0.0",
"dotenv": "^10.0.0",
"erlpack": "^0.1.3",
"readdirp": "^3.6.0",
"reflect-metadata": "^0.1.13",
"snowflake-studio-docs": "^2.0.3",
"tsyringe": "^4.6.0",
"undici": "^4.8.1",
"utf-8-validate": "^5.0.7",
"winston": "^3.3.3",
"zlib-sync": "^0.1.7"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}