forked from c43721/plugins
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.45 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
{
"name": "root-plugins",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf \"packages/**/dist\" \"packages/**/.turbo\"",
"lint": "turbo run lint",
"format": "prettier --write \"packages/**/{src,tests,scripts}/**/*.{mjs,ts,js}\"",
"test": "turbo run test",
"build": "turbo run build",
"docs": "typedoc",
"update": "yarn upgrade-interactive",
"prepare": "husky install .github/husky",
"check-update": "turbo run check-update"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@favware/cliff-jumper": "^1.2.0",
"@favware/npm-deprecate": "^1.0.4",
"@sapphire/eslint-config": "^4.3.4",
"@sapphire/framework": "^2.4.1",
"@sapphire/pieces": "^3.3.1",
"@sapphire/prettier-config": "^1.4.3",
"@sapphire/stopwatch": "^1.4.1",
"@sapphire/ts-config": "^3.3.4",
"@sapphire/utilities": "^3.6.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@types/node-fetch": "^2.6.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"cz-conventional-changelog": "^3.3.0",
"discord-api-types": "^0.31.2",
"discord.js": "^13.6.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"gen-esm-wrapper": "^1.1.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"turbo": "^1.2.5",
"typedoc": "^0.22.15",
"typedoc-plugin-djs-links": "^1.0.4",
"typedoc-plugin-mdn-links": "^1.0.6",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphiredev/plugins.git"
},
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"acorn": "^8.7.0",
"ansi-regex": "^5.0.1",
"minimist": "^1.2.6",
"jest-environment-jsdom": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.3.tgz",
"jest-jasmine2": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.3.tgz"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@3.2.0"
}