-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
83 lines (83 loc) · 3.36 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
{
"name": "root",
"workspaces": [
"packages/*",
"docs/"
],
"private": true,
"type": "module",
"scripts": {
"prepack": "yarn inject && yarn build",
"print": "chalk yellow italic bold",
"clean": "yarn print 'cleaning build code' && rimraf packages/core/dist packages/react/dist",
"lint": "yarn print 'linting' && eslint packages/ --fix",
"format": "yarn print 'formatting' && prettier --log-level=warn --write .",
"inject": "run-s \"inject-*\" && prettier --write --log-level=warn \"./**/README.md\" \"./**/package.json\"",
"inject-readme-markdown": "node scripts/inject-readme-markdown.mjs",
"inject-package-exports": "node scripts/update-exports-and-side-effects.mjs",
"inject-core-index-re-exports": "node scripts/update-core-index-exports.mjs",
"inject-react-index-exports": "node scripts/update-react-index-exports.mjs",
"start": "yarn workspace @skyra/discord-components-core start",
"build": "yarn clean && yarn build:core && yarn build:react && yarn lint && yarn format",
"build:core": "yarn print 'building core' && yarn workspace @skyra/discord-components-core build",
"build:react": "yarn print 'building react' && yarn workspace @skyra/discord-components-react build",
"build:documentation": "yarn workspace documentation build"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.2.2",
"@lerna-lite/cli": "^3.10.0",
"@lerna-lite/publish": "^3.10.0",
"@lerna-lite/run": "^3.10.0",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^22.8.7",
"chalk-cli": "^5.0.1",
"eslint": "^8.57.1",
"eslint-config-neon": "^0.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-wc": "^2.2.0",
"lint-staged": "^15.2.10",
"markdown-toc": "^1.2.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"react": "^18.3.1",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.5.4"
},
"resolutions": {
"esbuild": "~0.24.0",
"@next/eslint-plugin-next": "npm:@favware/skip-dependency@latest",
"eslint-plugin-mdx": "npm:@favware/skip-dependency@latest",
"eslint-plugin-cypress": "npm:@favware/skip-dependency@latest",
"eslint-plugin-rxjs-angular": "npm:@favware/skip-dependency@latest",
"eslint-plugin-react-hooks": "npm:@favware/skip-dependency@latest",
"eslint-plugin-rxjs": "npm:@favware/skip-dependency@latest",
"eslint-plugin-svelte3": "npm:@favware/skip-dependency@latest",
"eslint-plugin-jsx-a11y": "npm:@favware/skip-dependency@latest",
"@angular-eslint/eslint-plugin": "npm:@favware/skip-dependency@latest",
"@angular-eslint/eslint-plugin-template": "npm:@favware/skip-dependency@latest",
"@angular-eslint/template-parser": "npm:@favware/skip-dependency@latest",
"astro-eslint-parser": "npm:@favware/skip-dependency@latest",
"eslint-plugin-astro": "npm:@favware/skip-dependency@latest",
"eslint-plugin-react": "npm:@favware/skip-dependency@latest",
"eslint-plugin-vue": "npm:@favware/skip-dependency@latest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts,tsx}": "eslint --fix"
},
"packageManager": "yarn@4.5.1"
}