-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
{
"name": "bv-addons-root",
"private": true,
"type": "module",
"workspaces": [
"./packages/*"
],
"scripts": {
"dev:demo": "concurrently -n lib,demo \"npm run dev -w packages/addons\" \"npm run dev -w packages/demo\"",
"lint": "eslint \"**/*.{js,cjs,mjs,ts,cts,mts}\" --max-warnings 0 --quiet --fix",
"lint-check": "eslint \"**/*.{js,cjs,mjs,ts,cts,mts}\" --max-warnings 0",
"prepare": "run-s prepare:*",
"prepare:husky": "husky"
},
"devDependencies": {
"@eslint/js": "~9.39.2",
"@types/eslint": "~9.6.1",
"@types/node": "~20.19.1",
"concurrently": "~9.2.1",
"eslint": "~9.39.2",
"eslint-config-prettier": "~10.1.8",
"eslint-import-resolver-typescript": "~4.4.4",
"eslint-plugin-import": "~2.32.0",
"eslint-plugin-jest": "~29.12.2",
"eslint-plugin-jest-dom": "~5.5.0",
"eslint-plugin-n": "~17.23.2",
"eslint-plugin-notice": "~1.0.0",
"eslint-plugin-prettier": "~5.5.5",
"eslint-plugin-unicorn": "~62.0.0",
"husky": "~9.1.7",
"lint-staged": "~16.2.7",
"npm-run-all": "~4.1.5",
"typescript": "~5.9.2",
"typescript-eslint": "~8.54.0"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,cts,mts}": [
"eslint --fix"
]
}
}