-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
42
43
44
45
46
{
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "npm run lint && npm test --workspaces --if-present",
"lint": "eslint .",
"build": "npm run build --workspaces --if-present",
"types": "npm run types --workspaces --if-present",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build --workspaces --if-present && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.25.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"importOrder": [
"^node:",
"^[./]"
],
"importOrderSeparation": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
],
"*.{js,css,md}": "prettier --write"
}
}