-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.67 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
{
"name": "web-components-toolbox-storybook",
"version": "0.0.1",
"description": "web components toolbox to be used in a CMS",
"main": "./index.html",
"scripts": {
"fix": "standard --fix",
"serve": "live-server --port=3000 --host=localhost --no-css-inject",
"test": "live-server --port=2200 --host=localhost --no-browser --ignorePattern=.* & npx playwright test --config=src/es/components/web-components-toolbox/e2e/ && killall node",
"update": "git submodule update --init --recursive --remote --force",
"storybook": "NODE_OPTIONS='--openssl-legacy-provider' storybook dev -p 6006",
"build": "NODE_OPTIONS='--openssl-legacy-provider' storybook build",
"publish": "git add . && git commit -m 'feat(storybook): build static files for Storybook' && git push"
},
"author": "[email protected], [email protected]",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@etchteam/storybook-addon-css-variables-theme": "^1.5.1",
"@playwright/test": "^1.40.0",
"@storybook/addon-actions": "^7.6.0",
"@storybook/addon-essentials": "^7.6.0",
"@storybook/addon-links": "^7.6.0",
"@storybook/addon-mdx-gfm": "^7.6.0",
"@storybook/blocks": "^7.6.0",
"@storybook/web-components": "^7.6.0",
"@storybook/web-components-webpack5": "^7.6.0",
"ajv": "^8.12.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"lit": "^3.1.0",
"lit-html": "^3.1.0",
"live-server": "*",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"standard": "*",
"storybook": "^7.6.0",
"storybook-addon-themes": "^6.1.0",
"style-loader": "^3.3.3",
"webpack": "^5.89.0"
}
}