-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.33 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
{
"name": "surface",
"version": "1.0.0",
"description": "Storybook Drupal theme",
"author": "UCLA Health",
"license": "GPL-2.0+",
"type": "module",
"browserslist": [
"last 2 versions and not dead",
">= 1%",
">= 1% in US"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"vite:build": "vite build",
"vite:watch": "vite build --watch",
"storybook:dev": "storybook dev -p 6006",
"storybook:build": "storybook build -o storybook",
"storybook:test": "test-storybook",
"build": "npm run vite:build && npm run storybook:build",
"start": "npm run watch",
"watch": "npm run vite:watch & npm run storybook:dev",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"stylelint": "stylelint './source/patterns/**/*.css'"
},
"devDependencies": {
"@csstools/postcss-global-data": "^3.0.0",
"@drupal/once": "^1.0.1",
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@storybook/addon-essentials": "^8.3.3",
"@storybook/addon-interactions": "^8.3.3",
"@storybook/addon-links": "^8.3.3",
"@storybook/blocks": "^8.3.3",
"@storybook/preview-api": "^8.3.3",
"@storybook/react": "^8.3.3",
"@storybook/react-vite": "^8.3.3",
"@storybook/test": "^8.3.3",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1",
"postcss-nested": "^6.2.0",
"postcss-preset-env": "^10.0.5",
"prettier": "^3.3.3",
"remark-gfm": "^4.0.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-selector-pseudo-class-lvhfa": "^3.1.1",
"twig-drupal-filters": "^3.2.0",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-static-copy": "^1.0.6",
"vite-plugin-twig-drupal": "^1.4.1"
},
"dependencies": {
"@storybook/addon-themes": "^8.3.3",
"@storybook/manager-api": "^8.3.3",
"@storybook/test-runner": "^0.19.1",
"@storybook/theming": "^8.3.3",
"html-react-parser": "^5.1.16",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.3.3",
"twig": "^1.17.1",
"vite": "^5.4.8"
}
}