-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"private": true,
"scripts": {
"format": "prettier --write '**/*.js' '**/*.scss' '**/*.html'",
"sass": "node script/sass.js",
"watch": "npm-run-all --parallel watch:sass watch:eleventy",
"watch:sass": "node script/watchsass.js",
"watch:eleventy": "eleventy --serve",
"build": "eleventy",
"lint": "eslint script/sync.ts",
"sync-data": "node --loader=ts-node/esm script/sync.ts"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@primer/css": "^21.0.0",
"@primer/octicons": "^19.0.0",
"@primer/primitives": "^11.0.0",
"@primer/view-components": "^0.44.0",
"domutils": "^3.0.0",
"html-minifier": "^4.0.0",
"liquidjs": "^10.0.0",
"markdown-it": "^14.0.0",
"sass": "^1.49.8",
"supports-color": "^10.0.0"
},
"repository": "github:probot/probot.github.io",
"devDependencies": {
"@octokit/rest": "^22.0.0",
"@types/node": "^24.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"npm-run-all2": "^8.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"yaml": "2.8.2"
},
"packageManager": "yarn@4.12.0",
"type": "module"
}