-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.61 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.61 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
{
"name": "Citizen",
"private": true,
"scripts": {
"lint": "npm -s run lint:js && npm -s run lint:styles && npm -s run lint:i18n && npm -s run lint:md",
"lint:fix:js": "npm -s run lint:js -- --fix",
"lint:fix:md": "npm -s run lint:md -- --fix",
"lint:fix:styles": "npm -s run lint:styles -- --fix",
"lint:js": "eslint --cache .",
"lint:md": "markdownlint \"*.md\"",
"lint:styles": "stylelint \"**/*.{less,css,vue}\"",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/",
"docs:install": "cd docs && npm install",
"docs:dev": "cd docs && npm run docs:dev",
"docs:build": "cd docs && npm run docs:build",
"docs:preview": "cd docs && npm run docs:preview",
"docs:lint": "cd docs && npm run lint",
"preflight": "npm run lint && npm test",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "lefthook install"
},
"devDependencies": {
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.3",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"devmoji": "^2.3.0",
"eslint": "8.57.1",
"eslint-config-wikimedia": "0.32.3",
"eslint-plugin-compat": "^6.2.0",
"grunt-banana-checker": "0.13.0",
"jsdom": "^28.1.0",
"lefthook": "^2.1.4",
"less": "^4.5.1",
"markdownlint-cli": "^0.48.0",
"mustache": "^4.2.0",
"pinia": "2.0.16",
"stylelint": "17.4.0",
"stylelint-config-recess-order": "7.6.1",
"stylelint-config-wikimedia": "0.18.0",
"stylelint-order": "^7.0.1",
"stylelint-plugin-use-baseline": "^1.2.7",
"types-mediawiki": "2.0.0",
"vitest": "^4.0.18",
"vue": "3.4.27"
},
"version": "3.14.0"
}