-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "montage-frontend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"watch:build": "chokidar 'src/**/*' -c 'npm run build && cp -r dist/* ../montage/static' --initial",
"toolforge:build": "export SHELL=/bin/sh && npm run build && cp -r dist/* ../montage/static",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@wikimedia/codex": "^1.14.0",
"@wikimedia/codex-icons": "^1.14.0",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"iso-639-1": "^3.1.3",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"vue": "^3.4.27",
"vue-draggable-next": "^2.2.1",
"vue-i18n": "^10.0.5",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^4.3.3",
"vue-spinner": "^1.0.4",
"vue-toastification": "^2.0.0-rc.5",
"vuedraggable": "^2.24.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"chokidar-cli": "^3.0.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"prettier": "^3.2.5",
"vite": "^5.3.1"
}
}