This repository has been archived by the owner on Nov 12, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 2.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@pengubot/bot",
"version": "3.0.0",
"description": "",
"license": "Apache-2.0",
"private": true,
"author": {
"name": "Aditya Nath Tripathi",
"url": "https://github.com/AdityaTD",
"email": "adityatripathidelhi@gmail.com"
},
"contributors": [
{
"name": "Nejc Drobnic",
"url": "https://github.com/QuantumlyTangled",
"email": "yo@quantumlytangled.com"
}
],
"maintainers": [
{
"name": "Nejc Drobnic",
"url": "https://github.com/QuantumlyTangled",
"email": "yo@quantumlytangled.com"
}
],
"keywords": [
"pengubot",
"pengu",
"bot",
"discord",
"bot",
"discord"
],
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"compile": "yarn build && yarn build:move:languages",
"build": "tsc -b src",
"build:move:languages": "copyfiles ./src/languages/**/*.json --up 1 ./dist/",
"dev": "yarn compile && yarn start",
"typeorm": "node -r module-alias/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"@sapphire/decorators": "^1.0.0",
"@sapphire/framework": "sapphire-project/framework#build",
"@sapphire/pieces": "sapphire-project/pieces#build",
"@sapphire/utilities": "^1.0.0",
"@scp/in17n": "sapphirecommunityplugins/in17n#build",
"@sentry/integrations": "~5.21",
"@sentry/node": "~5.21",
"colorette": "^1.2.1",
"discord.js": "^12.3.1",
"ioredis": "^4.17.3",
"module-alias": "^2.2.2",
"moment": "^2.27.0",
"node-fetch": "^2.6.1",
"pg": "^8.3.2",
"reflect-metadata": "^0.1.13",
"tslib": "~1.9",
"tsyringe": "^4.3.0",
"typeorm": "^0.2.25",
"typeorm-naming-strategies": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@pengubot/eslint-config": "^1.0.0",
"@types/ioredis": "^4.17.4",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.6.4",
"@types/node-fetch": "^2.5.7",
"@types/pg": "^7.14.4",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"copyfiles": "^2.3.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.7.0",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"rethinkdb-ts": "^2.4.5",
"standard-version": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"_moduleAliases": {
"@orm": "dist/lib/orm",
"@utils": "dist/lib/utils",
"@lib": "dist/lib",
"@root": "dist"
}
}