-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.8 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
{
"name": "laika",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm run dev",
"serve": "npm run dev",
"dev": "cross-env NODE_ENV=development webpack serve --host 0.0.0.0",
"build": "cross-env NODE_ENV=production webpack",
"test:unit": "jest --maxWorkers=1",
"lint": "eslint --ext .ts,.vue src/ tests/",
"fix-cs": "eslint --fix --ext .ts,.vue src/",
"ci": "npm run lint && npm run test:unit",
"pally": "pa11y http://localhost:8082/"
},
"dependencies": {
"@airbrake/browser": "^2.1.8",
"@babel/runtime": "^7.25.7",
"axios": "^1.7.7",
"bulma": "0.9.4",
"core-js": "^3.38.0",
"format-number": "^3.0.0",
"js-cookie": "^3.0.5",
"jsonp": "^0.2.1",
"process": "^0.11.10",
"vue": "~3.4.27",
"vue-i18n": "^10.0.5",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@testing-library/jest-dom": "6.6.2",
"@types/jest": "^29.5.13",
"@types/js-cookie": "^3.0.6",
"@types/jsonp": "^0.2.3",
"@types/moxios": "^0.4.17",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "2.4.6",
"@vue/vue3-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint-config-wikimedia": "^0.28.2",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-json-es": "^1.6.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.29.1",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.2",
"jest": "^29.7.0",
"jest-each": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-mock-axios": "^4.7.3",
"jest-serializer-vue": "^3.1.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.9.1",
"moxios": "^0.4.0",
"pa11y": "^8.0.0",
"regenerator-runtime": "^0.14.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.80.3",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "~5.6.3",
"vue-eslint-parser": "^9.4.3",
"vue-loader": "^17.4.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-hot-middleware": "^2.26.1",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^6.0.1"
}
}