This repository has been archived by the owner on Jun 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.38 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
{
"name": "stencil-storybook-boilerplate",
"version": "0.0.0",
"private": true,
"description": "Stencil Storybook Boilerplate",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"scripts": {
"watch": "run-p watch:stencil watch:storybook",
"watch:stencil": "stencil build --prod --watch --serve",
"watch:storybook": "start-storybook -p 6006",
"lint": "eslint src/**/*{.ts,.tsx}",
"stylelint": "stylelint '**/*.scss' --allow-empty-input",
"test": "stencil test --spec --e2e --coverage",
"build:storybook": "build-storybook",
"build:stencil": "stencil build --docs",
"predeploy": "yarn build:stencil && yarn build:storybook",
"deploy": "gh-pages -d storybook-static"
},
"dependencies": {
"@stencil/core": "2.18.1"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@stencil/eslint-plugin": "0.4.0",
"@stencil/sass": "2.0.0",
"@storybook/addon-actions": "6.5.12",
"@storybook/addon-essentials": "6.5.12",
"@storybook/addon-links": "6.5.12",
"@storybook/addon-notes": "5.3.21",
"@storybook/web-components": "6.5.12",
"@types/jest": "27.5.2",
"@types/node": "16.11.65",
"@types/puppeteer": "5.4.7",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-loader": "8.2.5",
"copy-webpack-plugin": "10.2.4",
"eslint": "7.32.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.10",
"gh-pages": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-cli": "27.5.1",
"lit-html": "2.4.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.18",
"puppeteer": "13.7.0",
"react-is": "18.2.0",
"stylelint": "14.13.0",
"stylelint-config-sass-guidelines": "9.0.1",
"typescript": "4.7.4",
"write-file-webpack-plugin": "4.5.1"
},
"jest": {
"preset": "@stencil/core/testing"
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn stylelint && yarn test"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}