-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "parsonic",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run clean && pnpm run -r build",
"build-storybook": "storybook build",
"clean": "pnpm run -r clean",
"dev": "pnpm run -r dev",
"lint": "eslint .",
"format": "prettier --write --ignore-unknown .",
"prepare": "husky",
"release": "changeset publish",
"storybook": "storybook dev -p 6006",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Phil Parsons",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@chromatic-com/storybook": "^3.2.3",
"@custom-elements-manifest/analyzer": "^0.10.4",
"@eslint/js": "^9.17.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/web-components": "^8.4.7",
"@storybook/web-components-vite": "^8.4.7",
"@types/node": "22",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"lit": "^3.2.1",
"prettier": "^3.4.2",
"storybook": "^8.4.7",
"typescript": "^5.7.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"prettier": {
"bracketSameLine": true,
"htmlWhitespaceSensitivity": "strict",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}