-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
103 lines (103 loc) · 3.57 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@zanichelli/albe-web-components",
"version": "17.1.0",
"description": "The Web Components implementation of Albe, the Zanichelli's design system.",
"license": "MIT",
"main": "dist/index.cjs.js",
"unpkg": "dist/web-components-library/web-components-library.esm.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"loader/",
"www/",
"react/"
],
"scripts": {
"build": "yarn build.wc && yarn build.react",
"build-storybook": "yarn build && storybook build --config-dir .storybook . --output-dir storybook",
"build.react": "rimraf react && tsc --build tsconfig.react.json",
"build.wc": "mkdirp react && rimraf src-react/react-component-lib && stencil build",
"generate": "plop --plopfile internals/generators/index.js",
"lint": "yarn lint.eslint && yarn lint.stylelint && yarn lint.prettier",
"lint-fix": "yarn lint-fix.eslint && yarn lint-fix.stylelint && yarn lint-fix.prettier",
"lint-fix.eslint": "yarn lint.eslint --fix",
"lint-fix.prettier": "prettier --write .",
"lint-fix.stylelint": "yarn lint.stylelint --fix",
"lint.eslint": "eslint ./src",
"lint.prettier": "prettier --check .",
"lint.stylelint": "stylelint \"src/**/*.css\"",
"prepare": "husky install",
"release": "commit-and-tag-version",
"start": "stencil build --dev --watch --serve --no-open",
"start-storybook": "yarn build.wc --dev && storybook dev --port 3003 --no-open",
"test": "stencil test --spec",
"test.e2e": "stencil test --e2e",
"test.e2e.single": "stencil test --e2e -- ",
"test.watch": "stencil test --spec --watch",
"ts-check": "tsc --noEmit"
},
"dependencies": {
"dialog-polyfill": "^0.5.6",
"flatpickr": "^4.6.13",
"hammerjs": "^2.0.8"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@stencil-community/eslint-plugin": "^0.8.0",
"@stencil/core": "~4.20.0",
"@stencil/react-output-target": "^0.5.3",
"@storybook/addon-docs": "^8.3.0",
"@storybook/addon-viewport": "^8.3.0",
"@storybook/blocks": "^8.3.0",
"@storybook/web-components": "^8.3.0",
"@storybook/web-components-vite": "^8.3.0",
"@types/hammerjs": "^2.0.39",
"@types/jest": "^29.5.6",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"commit-and-tag-version": "^12.4.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"lit": "^3.1.2",
"mkdirp": "^3.0.1",
"plop": "^4.0.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"puppeteer": "^21.0.0",
"rimraf": "^6.0.1",
"storybook": "^8.3.0",
"storybook-addon-stencil": "^0.2.2",
"stylelint": "^14.9.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"stylelint-value-no-unknown-custom-properties": "^4.0.0",
"typescript": "~5.4.0",
"vite": "^5.2.11"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs"
}