-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "issue-ops-docs",
"description": "IssueOps Documentation",
"author": "Nick Alteen <[email protected]>",
"version": "0.3.0",
"homepage": "https://github.com/issue-ops/docs#readme",
"repository": "issue-ops/docs",
"bugs": {
"url": "https://github.com/issue-ops/docs/issues"
},
"keywords": [
"GitHub",
"Gatsby",
"IssueOps"
],
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run -w docs build",
"clean": "npm run -w docs clean",
"develop": "npm run -w docs develop",
"serve": "npm run -w docs serve",
"start": "npm run -w docs develop",
"format:check": "prettier --check '**'",
"format:write": "prettier --write '**'",
"lint": "npm run lint:docs && npm run lint:theme",
"lint:docs": "npm run -w docs lint",
"lint:theme": "npm run -w gatsby-theme-doctocat-typescript lint"
},
"license": "MIT",
"workspaces": [
"gatsby-theme-doctocat-typescript",
"docs"
],
"devDependencies": {
"@playwright/test": "^1.48.2",
"eslint-plugin-jest": "^28.8.3",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"overrides": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"gatsby": "^5.13.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack-dev-middleware": "^7.2.1"
}
}