-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 2.12 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
{
"name": "@civictheme/uikit",
"version": "1.9.0",
"license": "GPL-2.0-or-later",
"description": "CivicTheme UI Kit with Storybook integration",
"keywords": [
"ui kit",
"uikit",
"components",
"component library",
"design system",
"pattern library",
"storybook",
"styleguide"
],
"homepage": "https://github.com/civictheme/uikit",
"bugs": "https://github.com/civictheme/uikit",
"repository": "https://github.com/civictheme/uikit.git",
"type": "module",
"scripts": {
"build": "npm run build-storybook",
"dist": "node build.js base build styles styles_storybook styles_variables styles_stories js_storybook assets constants",
"dist:watch": "node build.js base build watch styles styles_storybook styles_variables styles_stories js_storybook assets constants",
"storybook": "storybook dev -p 6006",
"build-storybook": "npm run dist && storybook build",
"dev": "npm run dist && node build.js cli \"dist:watch\" \"storybook\"",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:ci": "npm run test-unit:ci",
"test-unit:ci": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"lint": "eslint ./components ./.storybook ./tests && stylelint 'components/**/*.scss'"
},
"devDependencies": {
"@alexskrypnyk/scss-variables-extractor": "^0.1.1",
"@storybook/addon-essentials": "^8.5.2",
"@storybook/addon-links": "^8.5.2",
"@storybook/html-vite": "^8.5.2",
"@storybook/manager-api": "^8.5.2",
"@storybook/theming": "^8.5.2",
"@whitespace/storybook-addon-html": "^6.1.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import-newlines": "^1.4.0",
"glob": "^11.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"sass-embedded": "1.77.5",
"storybook": "^8.5.2",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^23.0.0",
"stylelint-config-standard-scss": "^2.0.1",
"twig-testing-library": "^1.2.0",
"vite": "^6.0.0",
"vite-plugin-twig-drupal": "^1.4.2"
},
"dependencies": {
"@popperjs/core": "^2.11.8"
}
}