-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 2.44 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
{
"private": true,
"name": "wikidata-mismatch-finder",
"scripts": {
"lint": "run-s lint:*",
"lint:eslint": "eslint --ext .js,.vue resources/js",
"lint:stylelint": "stylelint '**/*.scss' '**/*.vue'",
"fix": "run-s fix:*",
"fix:eslint": "eslint --fix --ext .js,.vue resources/js",
"fix:stylelint": "stylelint '**/*.scss' '**/*.vue' --fix",
"i18n:validate": "banana-checker public/i18n",
"test": "jest",
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"devDependencies": {
"@pinia/testing": "^0.1.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vue/compiler-sfc": "^3.4.15",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/runtime-dom": "^3.4.15",
"@vue/test-utils": "^2.4.4",
"@vue/vue3-jest": "^29.2.4",
"@wikimedia/codex": "^1.0.1",
"@wikimedia/codex-design-tokens": "^1.0.1",
"@wikimedia/codex-icons": "^1.0.1",
"@wikimedia/language-data": "^1.1.6",
"axios": "^1.6.7",
"axios-mock-adapter": "^1.22.0",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.21.1",
"grunt-banana-checker": "^0.11.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"laravel-mix": "^6.0.49",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-html": "^1.6.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.70.0",
"sass-loader": "^14.1.0",
"stylelint": "^16.2.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.0.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.0",
"typescript": "^5.3.3",
"vue-loader": "^17.3.1"
},
"dependencies": {
"@inertiajs/inertia": "^0.11.0",
"@inertiajs/inertia-vue3": "^0.6.0",
"date-fns": "^3.3.1",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"pinia": "^2.1.7",
"ress": "^5.0.2",
"vue": "^3.3.8",
"vue-banana-i18n": "2.3.0"
}
}