-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 848 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 848 Bytes
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
{
"devDependencies": {
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@commitlint/config-pnpm-scopes": "catalog:",
"@stylistic/eslint-plugin": "catalog:",
"eslint": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:"
},
"scripts": {
"prepare": "husky",
"dev": "pnpm --parallel --filter=./packages/** dev",
"build": "pnpm --parallel --filter=./packages/** build"
},
"lint-staged": {
"./packages/dapp/src/**/*.{js,ts,tsx}": [
"eslint --fix"
],
"./packages/design-system/src/**/*.{js,ts,tsx}": [
"eslint --fix"
]
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}