-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.96 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.96 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
{
"name": "www.greenwoodjs.dev",
"version": "0.0.1",
"type": "module",
"description": "Documentation website for Greenwood",
"repository": "https://github.com/ProjectEvergreen/www.greenwoodjs.dev",
"author": "Owen Buckley <[email protected]>",
"license": "MIT",
"keywords": [
"Greenwood",
"Project Evergreen",
"Documentation"
],
"scripts": {
"build": "NODE_OPTIONS='--import @greenwood/cli/register' greenwood build",
"dev": "greenwood develop",
"serve": "npm run build && greenwood serve",
"story:dev": "storybook dev -p 6006",
"story:build": "storybook build",
"story:serve": "rimraf storybook-static && npm run story:build && http-server ./storybook-static",
"test": "wtr",
"test:tdd": "npm run test -- --watch",
"lint": "npm run lint:ls && npm run lint:js && npm run lint:css",
"lint:ls": "ls-lint",
"lint:js": "eslint",
"lint:css": "stylelint \"./src/**/*.css\"",
"lint:links": "npm run build && node ./link-checker.js",
"commit": "cz",
"commit:lint": "commitlint --last --verbose",
"commit:edit": "commitlint --edit $1",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepare": "husky install"
},
"dependencies": {
"geist": "^1.2.0",
"open-props": "^1.7.4",
"prism-themes": "^1.9.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@commitlint/cli": "^20.1.0",
"@double-great/stylelint-a11y": "^3.0.2",
"@eslint/js": "^9.11.1",
"@eslint/json": "^0.5.0",
"@eslint/markdown": "^6.2.0",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@greenwood/cli": "^0.33.0",
"@greenwood/plugin-css-modules": "^0.33.0",
"@greenwood/plugin-import-raw": "^0.33.0",
"@greenwood/plugin-markdown": "^0.33.0",
"@ls-lint/ls-lint": "^1.10.0",
"@mapbox/rehype-prism": "^0.9.0",
"@storybook/addon-a11y": "^10.2.17",
"@storybook/addon-docs": "^10.2.17",
"@storybook/addon-links": "^10.2.19",
"@storybook/addon-vitest": "^10.2.17",
"@storybook/web-components-vite": "^10.2.17",
"@web/test-runner": "^0.18.1",
"@web/test-runner-junit-reporter": "^0.7.1",
"commitizen": "^4.3.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-storybook": "^10.2.17",
"globals": "^15.10.0",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"lit": "^3.3.2",
"node-html-parser": "^6.1.13",
"prettier": "^3.2.5",
"rehype-autolink-headings": "^4.0.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^3.0.0",
"remark-gfm": "^4.0.0",
"remark-github": "^10.0.1",
"rimraf": "^6.0.1",
"storybook": "^10.2.17",
"storybook-addon-fetch-mock": "^2.0.1",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"vite": "^7.3.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.17.2"
}
}