-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.94 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
{
"name": "drupal-theme",
"version": "2.0.0",
"private": true,
"description": "component-driven development boilerplate for Drupal themes",
"license": "UNLICENSED",
"author": "bryan@bryanbuchs.com",
"type": "module",
"scripts": {
"build": "vite build --mode 'production' --minify",
"start": "vite build --mode 'development' --sourcemap --watch",
"prestart": "npm run build:tokens",
"prebuild": "npm run build:tokens",
"build:storybook": "storybook build --test",
"build:tokens": "node scripts/build-tokens.js",
"lint": "oxlint components/",
"lint:fix": "oxlint components/ --fix",
"format": "oxfmt components/",
"format:check": "oxfmt --check components/",
"prepare": "husky",
"preview": "vite build --watch",
"storybook": "storybook dev --disable-telemetry --port 6006",
"prestorybook": "npm run build:tokens"
},
"dependencies": {
"open-props": "^1.7.23",
"reasonable-colors": "^0.4.0"
},
"devDependencies": {
"@bundled-es-modules/memfs": "^4.17.0",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@storybook/addon-a11y": "^10.4.2",
"@storybook/html-vite": "^10.4.5",
"browserslist": "^4.28.2",
"browserslist-to-esbuild": "^2.1.1",
"drupal-attribute": "^1.2.1",
"eslint-plugin-storybook": "10.3.5",
"globals": "^17.6.0",
"husky": "^9.1.7",
"nano-staged": "^1.0.2",
"oxfmt": "^0.55.0",
"oxlint": "^1.69.0",
"storybook": "^10.4.2",
"style-dictionary": "^5.4.4",
"tinyglobby": "^0.2.17",
"title-case": "^4.3.2",
"twig": "3.0.0",
"vite": "^8.0.16",
"vite-plugin-browser-sync": "^7.0.0",
"vite-plugin-twig-drupal": "^1.7.0"
},
"optionalDependencies": {
"@esbuild/darwin-arm64": "^0.27.7"
},
"nano-staged": {
"*.{js,twig,css}": [
"oxfmt",
"oxlint --fix"
],
"*.{js,json,twig,css,md}": [
"oxfmt"
]
},
"packageManager": "pnpm@11.5.1"
}