-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.27 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": "@holisticon/hap",
"type": "module",
"version": "0.0.0",
"private": true,
"author": "Holisticon AG <[email protected]>",
"description": "A design system for Holisticon.",
"repository": "github:holisticon/atomic-playfulness",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky",
"build": "npm run build:foundation && npm run build:documentation",
"build:foundation": "npm run build -w @holisticon/hap-foundation",
"build:documentation": "npm run build -w @holisticon/hap-documentation",
"format": "prettier --write .",
"lint": "npm run lint --if-present -ws && prettier -c .",
"version": "changeset version && npm i",
"release": "changeset publish",
"storybook": "npm run build && npm run dev -w @holisticon/hap-documentation"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{ts,tsx,js,mjs}": "eslint --fix"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"eslint": "^9.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.4",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"storybook-addon-pseudo-states": "4.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.16"
}
}