-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"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": {
"@types/eslint": "~8.56.7",
"@types/node": "~20.16.5",
"@typescript-eslint/eslint-plugin": "~8.13.0",
"@typescript-eslint/parser": "~8.13.0",
"concurrently": "~9.1.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-import-resolver-typescript": "~3.6.3",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-n": "~17.12.0",
"eslint-plugin-notice": "~1.0.0",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-unicorn": "~56.0.0",
"husky": "~9.1.6",
"lint-staged": "~15.2.10",
"npm-run-all": "~4.1.5",
"typescript": "~5.6.2"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,cts,mts}": [
"eslint --fix"
]
}
}