-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.86 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
{
"name": "webpack.js.org",
"scripts": {
"build:prepare": "node scripts/prepare/index.mjs",
"build:data": "npm-run-all build:data:*",
"build:data:blog": "node scripts/data/blog.mjs",
"build:md": "npm-run-all build:md:*",
"build:md:api": "node scripts/markdown/api/index.mjs && node scripts/markdown/api/configuration.mjs",
"build:md:readmes": "node scripts/markdown/readmes.mjs",
"build:md:governance": "node scripts/markdown/governance.mjs",
"build:html": "node scripts/html/index.mjs && node scripts/html/sitemap-index.mjs",
"build:rss-feed": "node scripts/rss-feed/index.mjs",
"build": "npm-run-all build:*",
"lint": "npm-run-all \"lint:!(fix)\"",
"lint:fix": "npm-run-all lint:*:fix",
"lint:js": "eslint .",
"lint:js:fix": "node --run lint:js -- --fix",
"lint:css": "stylelint \"**/*.css\" --allow-empty-input",
"lint:css:fix": "node --run lint:css -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@node-core/doc-kit": "1.4.3",
"@tailwindcss/node": "^4.3.3",
"@vercel/analytics": "^2.0.1",
"@vercel/functions": "^3.7.6",
"@vercel/speed-insights": "^2.0.0",
"classnames": "^2.5.1",
"gray-matter": "^4.0.3",
"lucide-preact": "^1.28.0",
"npm-run-all": "^4.1.5",
"semver": "^7.8.5",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.12.0",
"webpack": "^5.109.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^8.0.3",
"eslint": "^10.8.0",
"feed": "^6.0.0",
"globals": "^17.8.0",
"handlebars": "^4.7.9",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typedoc-plugin-missing-exports": "^4.1.4"
}
}