-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 3.1 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "new-lexeme-special-page",
"private": true,
"version": "0.0.1",
"description": "Form for the upcoming revival of the NewLexeme special page on Wikidata",
"main": "main.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"buildPreview": "BUILD_AS_APP=1 vite build",
"fix": "run-s fix:*",
"fix:prettier": "prettier --write '**/*.{json,yml,yaml}'",
"fix:eslint": "eslint --fix --ext .js,.ts,.vue --ignore-path .gitignore .",
"fix:stylelint": "stylelint --fix '**/*.{css,scss,vue}'",
"lint": "run-s lint:*",
"lint:prettier": "prettier --check '**/*.{json,yml,yaml}'",
"lint:eslint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"lint:stylelint": "stylelint '**/*.{css,scss,vue}'",
"preview": "vite preview",
"prepare": "husky",
"test": "run-s lint check-types test-only",
"test-only": "run-s test:*",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:cypress": "start-server-and-test 'vite --port 3000 --strictPort' http-get://localhost:3000 'cypress run'",
"check-types": "vue-tsc --noEmit",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmde/new-lexeme-special-page.git"
},
"keywords": [
"Wikidata"
],
"author": "The Wikidata team",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://phabricator.wikimedia.org/project/board/5674/"
},
"homepage": "https://github.com/wmde/new-lexeme-special-page#readme",
"engines": {
"node": ">=16"
},
"dependencies": {
"@wikimedia/codex": "^1.14.0",
"@wikimedia/codex-design-tokens": "^1.14.0",
"@wmde/wikibase-datamodel-types": "^0.2.0",
"jest-environment-jsdom": "^29.7.0",
"vue": "3.4.27",
"vuex": "4.0.2"
},
"devDependencies": {
"@namics/stylelint-bem": "^10.0.1",
"@rushstack/eslint-patch": "^1.10.4",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-dom": "3.4.27",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/server-renderer": "3.4.27",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"@wmde/eslint-config-wikimedia-typescript": "^0.2.12",
"axe-core": "^4.10.0",
"cypress": "^13.15.0",
"cypress-axe": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-wikimedia": "^0.28.2",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-vue": "^9.29.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"sass": "^1.79.5",
"start-server-and-test": "^2.0.8",
"stylelint": "^16.9.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-wikimedia": "^0.17.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-plugin-banner": "^0.8.0",
"vue-tsc": "^2.1.6"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint"
],
"*.{json,yml,yaml}": [
"prettier --check"
],
"*.{css,scss,vue}": [
"stylelint"
]
}
}