-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.9 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
{
"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 @aitsys/discord-components-core start",
"build": "yarn clean && yarn build:core && yarn build:react && yarn lint && yarn format",
"build:core": "yarn workspace @aitsys/discord-components-core build",
"build:react": "yarn workspace @aitsys/discord-components-react build"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@lerna-lite/cli": "^3.0.0",
"@sapphire/eslint-config": "^5.0.0",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@stencil/react-output-target": "^0.7.0",
"@types/node": "^22.0.0",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.0.0",
"gen-esm-wrapper": "^1.1.3",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"pretty-quick": "^4.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"replace-in-file": "^8.0.0",
"typescript": "^5.1.6"
},
"resolutions": {
"minimist": "^1.2.7",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1"
},
"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"
}