-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.29 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "max-web-components",
"version": "1.0.0",
"main": "index.js",
"private": true,
"repository": "https://github.com/nnmax/max-web-components.git",
"author": "Max <[email protected]>",
"license": "MIT",
"scripts": {
"start": "yarn sb",
"build": "rm -rf ./es && rollup --config rollup.config.mjs",
"build:watch": "yarn build --watch",
"test": "web-test-runner --node-resolve",
"eslint": "eslint . --ext .js,.ts",
"sb": "storybook dev -p 6006",
"build:sb": "storybook build",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"analyze": "custom-elements-manifest analyze --config \"custom-elements-manifest.config.mjs\""
},
"dependencies": {
"lit-html": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@nnmax/eslint-config-typescript": "^1.4.0",
"@open-wc/testing": "^3.2.0",
"@rollup/plugin-typescript": "^11.1.5",
"@storybook/addon-a11y": "^7.5.1",
"@storybook/addon-actions": "^7.5.1",
"@storybook/addon-docs": "^7.5.1",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/web-components": "^7.5.1",
"@storybook/web-components-webpack5": "^7.5.1",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.59.2",
"@web/dev-server-esbuild": "~0.4.3",
"@web/test-runner": "~0.16.1",
"acorn-import-assertions": "^1.9.0",
"css-loader": "^6.8.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"pinst": "^3.0.0",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.4",
"rollup-plugin-import-assert": "^3.0.1",
"storybook": "^7.5.1",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.(j|t)s": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=16"
}
}