-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.81 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
{
"scripts": {
"build": "eleventy",
"package": "node scripts/package.ts",
"dev": "eleventy --watch",
"clean": "node scripts/clean.ts",
"release": "npm-run-all --continue-on-error clean build \"package {@}\" --",
"check": "npm-run-all --continue-on-error lint typecheck test",
"lint": "npm-run-all --continue-on-error lint:*",
"lint:editorconfig": "editorconfig-checker",
"lint:eslint": "eslint",
"lint:prettier": "prettier --check .",
"lint:css": "stylelint 'src/**/*.scss'",
"lint:locales": "node scripts/locales.ts",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "npm-run-all test:deps test:build \"test:run {@}\" test:coverage --",
"test:deps": "playwright install --with-deps",
"test:build": "eleventy -- --coverage",
"test:run": "playwright test --workers=1",
"test:coverage": "nyc report --reporter=lcov --reporter=html --reporter=text --reporter=json-summary"
},
"type": "module",
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-utils": "^2.0.7",
"@playwright/test": "^1.62.1",
"@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@typescript/native": "npm:typescript@^7.0.2",
"@zip.js/zip.js": "^2.8.55",
"chrome-types": "^0.1.440",
"editorconfig-checker": "^6.1.1",
"eslint": "^10.9.0",
"eslint-plugin-simple-import-sort": "^14.0.0",
"jsx-async-runtime": "^2.2.0",
"npm-run-all2": "^9.0.3",
"nyc": "^18.0.0",
"prettier": "^3.9.6",
"prettier-plugin-multiline-arrays": "^4.1.11",
"sass": "^1.103.1",
"sharp": "^0.35.3",
"stylelint": "^17.14.1",
"stylelint-config-standard-scss": "^17.0.0",
"tsx": "^4.23.12",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vite": "^8.2.2",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-istanbul": "^9.0.1"
}
}