-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.77 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.77 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "emulsify-drupal",
"version": "1.0.0",
"description": "Storybook development + Webpack Build + Drupal 8 theme",
"keywords": [
"component library",
"design system",
"drupal",
"pattern library",
"storybook",
"styleguide"
],
"author": "Evan Willhite <evan@fourkitchens.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@storybook/addon-a11y": "^7.6.6",
"@storybook/addon-actions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addons": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/storybook-deployer": "^2.8.16",
"add-attributes-twig-extension": "^0.1.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"babel-preset-minify": "^0.5.2",
"bem-twig-extension": "^0.1.1",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.2",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-webpack-plugin": "^4.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"file-loader": "^6.2.0",
"fs": "^0.0.1-security",
"glob": "^10.3.10",
"imagemin-webpack-plugin": "^2.4.2",
"js-yaml-loader": "^1.2.2",
"mini-css-extract-plugin": "^2.7.6",
"sass": "^1.69.5",
"glob-import-loader": "^1.2.0",
"postcss": "^8.4.32",
"postcss-custom-properties": "^13.3.2",
"postcss-loader": "^7.3.3",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"stylelint-webpack-plugin": "^4.1.1",
"svg-sprite-loader": "^6.0.11",
"twig": "^1.17.0",
"twig-drupal-filters": "^3.2.0",
"twig-loader": "https://github.com/fourkitchens/twig-loader",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"scripts": {
"commit": "git-cz",
"lint": "eslint ./components",
"a11y": "npm run build-storybook && ./scripts/a11y.js -r",
"storybook": "storybook dev -p 6006 -s ./dist,./images",
"build-storybook": "storybook build -s ./dist,./images -o .out",
"deploy-storybook": "storybook-to-ghpages -o .out",
"webpack": "webpack --watch --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"develop": "concurrently --raw \"npm run webpack\" \"npm run storybook\"",
"test": "jest --coverage",
"twatch": "jest --no-coverage --watch --verbose",
"coverage": "npm test && open-cli .coverage/lcov-report/index.html",
"format": "prettier --write \"**/*.{js,yml,scss,md}\"",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@storybook/cli": "^7.6.6",
"@storybook/preset-scss": "^1.0.3",
"@testing-library/react": "^14.1.2",
"babel-jest": "^29.7.0",
"breakpoint-sass": "^3.0.0",
"chalk": "^5.3.0",
"commitizen": "^4.3.0",
"core-js": "3",
"cz-conventional-changelog": "3.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"node-sass-glob-importer": "^5.3.3",
"normalize.css": "^8.0.1",
"open-cli": "^7.2.0",
"pa11y": "^6.2.3",
"prettier": "3.1.1",
"react-test-renderer": "^18.2.0",
"sass-glob-importer": "^1.0.1",
"twig-testing-library": "^1.1.1",
"yaml": "^2.3.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}