forked from skyra-project/discord-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "root",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"clean": "node scripts/clean.mjs",
"lint": "eslint packages/ --fix --ext ts,tsx",
"format": "prettier --write --loglevel=warn \"packages/**/src/**\"",
"start": "yarn workspace @skyra/discord-components-core start",
"build": "yarn clean && yarn build:core && yarn build:react && yarn lint && yarn format",
"build:core": "yarn workspace @skyra/discord-components-core build",
"build:react": "yarn workspace @skyra/discord-components-react build",
"postinstall": "husky install .github/husky"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@lerna-lite/cli": "^2.5.0",
"@lerna-lite/publish": "^2.5.0",
"@sapphire/eslint-config": "^4.4.3",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^4.0.0",
"@stencil/react-output-target": "^0.5.3",
"@types/node": "^18.16.19",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gen-esm-wrapper": "^1.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"replace-in-file": "^6.3.5",
"typescript": "^5.1.6"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@sapphire/ts-config@^4.0.0": "patch:@sapphire/ts-config@npm%3A4.0.0#./.yarn/patches/@sapphire-ts-config-npm-4.0.0-cfd20d4fc5.patch"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts,tsx}": "eslint --fix --ext mjs,js,ts,tsx"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@3.6.1"
}