-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.45 KB
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
{
"name": "drupal-theme",
"version": "1.0.0",
"scripts": {
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"webpack": "webpack --watch --config ./webpack/webpack.config.js --mode=development",
"develop": "concurrently --raw \"npm run webpack\" \"npm run storybook\"",
"build": "webpack --config ./webpack/webpack.config.js --mode=production",
"sass-prod": "sass components/style.scss dist/style.css --no-source-map --style=compressed --update",
"sass-dev": "sass --watch components/style.scss:dist/style.css --source-map --style=expanded --update"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@chromatic-com/storybook": "^2.0.2",
"@storybook/addon-essentials": "^8.3.4",
"@storybook/addon-links": "^8.3.4",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.3.4",
"@storybook/server": "^8.3.4",
"@storybook/server-webpack5": "^8.3.4",
"@storybook/test": "^8.3.4",
"@storybook/web-components": "^8.3.4",
"@storybook/web-components-webpack5": "^8.3.4",
"concurrently": "^8.2.2",
"css-loader": "^7.1.2",
"lit": "^3.2.0",
"mini-css-extract-plugin": "^2.9.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.1",
"storybook": "^8.3.4",
"style-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}