-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.95 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.95 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
{
"author": "MaxMind",
"bugs": {
"url": "https://github.com/maxmind/dev-site/issues"
},
"description": "Developer website for MaxMind",
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"baseline-browser-mapping": "^2.10.12",
"cspell": "^10.0.0",
"eslint": "^10.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"prettier-plugin-go-template": "^0.0.15",
"stylelint": "^16.26.1",
"stylelint-config-recommended": "^17.0.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-no-unsupported-browser-features": "^8.1.1",
"stylelint-order": "^8.1.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"engines": {
"node": ">=22.21.1",
"pnpm": ">=10"
},
"license": "MIT",
"name": "dev-site",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/maxmind/dev-site.git"
},
"scripts": {
"build:headers": "node --experimental-strip-types bin/generate-headers.ts",
"fix": "run-p fix:*",
"fix:scripts": "pnpm run lint:scripts --fix",
"fix:styles": "pnpm run lint:styles --fix",
"lint": "run-p lint:*",
"lint:cspell": "cspell '**/*.md' --no-summary --no-progress --color",
"lint:scripts": "tsc && pnpm exec eslint . --max-warnings=0",
"lint:styles": "stylelint ./assets/scss/*.{css,scss,sass}",
"lint:shortcode-parity": "node --experimental-strip-types ./bin/check-shortcode-parity.ts",
"lint:prettierignore-rawhtml": "node --experimental-strip-types ./bin/check-prettierignore-rawhtml.ts",
"lint:internal-links": "node --experimental-strip-types ./bin/check-internal-links.ts",
"prettier:ts": "prettier --write './assets/js/**'",
"format:rawhtml": "pnpm exec tsc -p tsconfig.format-rawhtml.json && node dist/format-rawhtml.js"
},
"version": "1.0.0"
}