This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.47 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
{
"name": "fate_srd-frontend",
"version": "1.0.0-beta.3",
"description": "Storybook development + Webpack Build + Drupal 8 theme",
"keywords": [
"component library",
"design system",
"drupal",
"pattern library",
"storybook",
"styleguide"
],
"author": "Evan Willhite <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@storybook/addon-a11y": "5.3.19",
"@storybook/addon-actions": "5.3.19",
"@storybook/addon-links": "5.3.19",
"@storybook/addons": "5.3.19",
"@storybook/react": "5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"add-attributes-twig-extension": "^0.1.0",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.0",
"bem-twig-extension": "^0.1.1",
"breakpoint-sass": "^2.7.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.2.0",
"cross-env": "7.0.2",
"css-loader": "^3.5.3",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.0.0",
"fs": "^0.0.1-security",
"glob": "^7.1.4",
"imagemin-webpack-plugin": "^2.4.2",
"js-yaml-loader": "^1.2.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"node-sass-glob-importer": "^5.3.2",
"normalize.css": "^8.0.1",
"postcss-loader": "^3.0.0",
"ramda": "^0.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.6.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.0.0",
"svg-sprite-loader": "^5.0.0",
"twig": "^1.15.1",
"twig-drupal-filters": "^3.1.0",
"twig-loader": "https://github.com/fourkitchens/twig-loader",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"scripts": {
"lint": "eslint ./components",
"a11y": "npm run build-storybook && ./scripts/a11y.js -r",
"storybook": "start-storybook --ci -s ./dist,./images,./fonts -p 6006",
"build-storybook": "build-storybook -s ./dist,./images,./fonts -o .out",
"deploy-storybook": "storybook-to-ghpages -o .out",
"babel": "npx babel components -w -d dist/js --ignore 'components/**/*.component.js','components/**/*.stories.js','components/**/*.min.js'",
"build-babel": "npx babel components -d dist/js --ignore 'components/**/*.component.js','components/**/*.stories.js'",
"webpack": "webpack -d --watch --config ./webpack/webpack.dev.js --display-error-details",
"build-webpack": "webpack -p --config ./webpack/webpack.prod.js --display-error-details",
"build": "npm run build-babel & npm run build-webpack",
"develop": "concurrently --raw \"npm run webpack\" \"npm run babel\" \"npm run storybook\"",
"test": "jest --coverage",
"coverage": "yarn test && open-cli .coverage/lcov-report/index.html"
},
"devDependencies": {
"@storybook/addon-viewport": "^5.3.19",
"babel-jest": "^26.0.1",
"chalk": "^4.0.0",
"core-js": "3.6.5",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"open-cli": "^6.0.1",
"pa11y": "^5.3.0",
"prettier": "2.0.5"
}
}