-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.87 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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"
],
"engines": {
"node": "^18.20.0"
},
"scripts": {
"clean": "rimraf public .greenwood storybook-static",
"build": "node --loader ./node_modules/@greenwood/cli/src/loader.js ./node_modules/@greenwood/cli/src/index.js build",
"dev": "greenwood develop",
"serve": "npm run clean && npm run build && greenwood serve",
"story:dev": "storybook dev -p 6006",
"story:build": "storybook build",
"story:serve": "npm run clean && 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",
"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": {
"@babel/eslint-parser": "^7.25.7",
"@babel/plugin-syntax-import-assertions": "^7.25.7",
"@chromatic-com/storybook": "^1.3.1",
"@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.30.1",
"@greenwood/plugin-css-modules": "^0.30.1",
"@greenwood/plugin-import-raw": "^0.30.1",
"@ls-lint/ls-lint": "^1.10.0",
"@mapbox/rehype-prism": "^0.9.0",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/blocks": "^8.0.6",
"@storybook/test": "^8.0.6",
"@storybook/web-components": "^8.0.6",
"@storybook/web-components-vite": "^8.0.6",
"@web/test-runner": "^0.18.1",
"@web/test-runner-junit-reporter": "^0.7.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"globals": "^15.10.0",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"lit": "^3.1.2",
"node-html-parser": "^6.1.13",
"prettier": "^3.2.5",
"rehype-autolink-headings": "^4.0.0",
"rehype-slug": "^3.0.0",
"remark-github": "^10.0.1",
"rimraf": "^5.0.5",
"storybook": "^8.0.6",
"storybook-addon-fetch-mock": "^2.0.1",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"vite": "^5.2.8"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.17.2"
}
}