This repository has been archived by the owner on Jan 17, 2022. It is now read-only.
generated from Quantumlyy/template-typescript-discord-sapphire
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (105 loc) · 2.58 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
{
"name": "debia",
"description": "A multipurpose Discord bot",
"version": "1.0.0",
"main": "dist/index.js",
"author": {
"name": "Rexogamer",
"email": "[email protected]",
"url": "https://github.com/rexogamer"
},
"contributors": [
{
"name": "QuantumlyTangled",
"email": "[email protected]",
"url": "https://quantumlytangled.com"
},
{
"name": "Devnol",
"email": "[email protected]",
"url": "https://github.com/Devnol"
},
{
"name": "Odyssey346",
"email": "[email protected]",
"url": "https://github.com/Oxygemo"
}
],
"license": "MIT",
"scripts": {
"lint": "eslint src --ext ts --fix",
"update": "yarn upgrade-interactive --latest",
"compile": "yarn build && yarn build:move:languages",
"build": "tsc -b src",
"build:move:languages": "copyfiles ./src/languages/**/*.json --up 1 ./dist/",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"test": "jest",
"test:coverage": "jest --coverage",
"sversion": "yarn standard-version",
"start": "node dist/index.js",
"start-watch": "pm2-runtime start dist/index.js --watch"
},
"dependencies": {
"@sapphire/framework": "sapphire-project/framework#build",
"@sapphire/pieces": "sapphire-project/pieces#build",
"@sapphire/plugin-i18next": "sapphire-project/plugins#build-i18next",
"@sapphire/utilities": "^1.0.1",
"discord.js": "^12.3.1",
"i18next": "^19.8.1",
"module-alias": "^2.2.2",
"tslib": "^2.0.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@quantumly/eslint-config": "^1.1.0",
"@types/i18next-fs-backend": "^1.0.0",
"@types/jest": "^26.0.14",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.11.2",
"@types/ws": "^7.2.7",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"copyfiles": "^2.4.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.10.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"lint-staged": "^10.4.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"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": {
"@utils": "dist/lib/utils",
"@lib": "dist/lib",
"@root": "dist"
}
}