-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.15 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
{
"name": "ca-storybook-starterkit",
"version": "1.0.0",
"description": "Storybook-based starterkit to support Drupal themes",
"main": "index.js",
"scripts": {
"build": "webpack --config ./webpack/webpack.prod.js",
"develop": "concurrently --raw \"npm run webpack\" \"npm run storybook\"",
"storybook": "start-storybook --ci -s ./dist,./images -p 6006",
"storybook-build": "npm run build && build-storybook -s ./dist -o .out",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack --watch --config ./webpack/webpack.dev.js",
"deploy": "npm run storybook-build && gh-pages -d .out"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.16.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/addons": "^6.3.12",
"@storybook/builder-webpack5": "^6.3.12",
"@storybook/html": "^6.3.12",
"@storybook/manager-webpack5": "^6.3.12",
"babel-loader": "^8.2.3",
"concurrently": "^7.1.0",
"copy-webpack-plugin": "^10.2.4",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-webpack-plugin": "^3.1.1",
"gh-pages": "^4.0.0",
"mini-css-extract-plugin": "^2.6.0",
"node-sass-glob-importer": "^5.3.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^1.3.0",
"stylelint": "^14.8.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-webpack-plugin": "^3.2.0",
"twig": "^1.15.4",
"twig-drupal-filters": "^3.1.2",
"twigjs-loader": "^1.0.2",
"uswds": "^2.13.3",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
}
}