-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.64 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
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
105
{
"name": "adam-admin",
"packageManager": "yarn@4.18.0",
"license": "Apache-2.0",
"version": "0.0.1",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --minify false",
"production": "yarn browserslist:update && vite build --mode production",
"development": "yarn browserslist:update && vite build --mode development --sourcemap",
"preview": "vite preview",
"ci": "run-s --print-name generate:dts lint:tsc lint:oxlint lint:eslint lint:stylelint",
"lint": "[ \"$*\" = \"--fix\" ] && yarn lint:fix || yarn ci",
"lint:fix": "run-s --print-name generate:dts lint:tsc format lint:oxlint:fix lint:eslint:fix lint:stylelint:fix",
"lint:tsc": "NODE_OPTIONS=--max-old-space-size=4096 vue-tsc --build",
"generate:dts": "node scripts/generate-dts.mjs",
"lint:oxlint": "oxlint .",
"lint:oxlint:fix": "oxlint . --fix",
"lint:eslint": "eslint",
"lint:eslint:fix": "eslint --fix",
"lint:stylelint": "stylelint **/*.{scss,vue}",
"lint:stylelint:fix": "stylelint **/*.{scss,vue} --fix",
"format": "oxfmt src/",
"format:check": "oxfmt src/ --check",
"browserslist:update": "npx --yes browserslist@latest --update-db",
"cy:open": "CYPRESS_CACHE_FOLDER='node_modules/.cache/Cypress' yarn cypress open -C cypress/config/cypress.config.ts"
},
"dependencies": {
"@anzusystems/common-admin": "1.47.0-beta.dev-1784059876",
"@floating-ui/dom": "^1.8.0",
"@mdi/font": "7.4.47",
"@sentry/vue": "^10.70.0",
"@tiptap/core": "^3.30.0",
"@tiptap/extension-bold": "^3.30.0",
"@tiptap/extension-italic": "^3.30.0",
"@tiptap/extension-link": "^3.30.0",
"@tiptap/extension-underline": "^3.30.0",
"@tiptap/pm": "^3.30.0",
"@tiptap/starter-kit": "^3.30.0",
"@tiptap/vue-3": "^3.30.0",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "14.4.0",
"@vueuse/integrations": "14.4.0",
"axios": "^1.19.0",
"jwt-decode": "^4.0.0",
"pinia": "^4.0.2",
"rusha": "^0.8.14",
"socket.io-client": "^4.8.3",
"sortablejs": "^1.15.7",
"universal-cookie": "^8.1.2",
"uuid": "^14.0.1",
"vue": "3.5.41",
"vue-i18n": "^11.4.8",
"vue-router": "^5.2.0",
"vuetify": "^4.1.8"
},
"devDependencies": {
"@cypress/grep": "^6.0.3",
"@intlify/unplugin-vue-i18n": "^11.2.4",
"@sentry/vite-plugin": "^5.4.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.13.3",
"@types/rusha": "^0.8.3",
"@types/sortablejs": "^1.15.9",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/devtools-api": "^8.2.1",
"@vue/eslint-config-typescript": "^14.9.0",
"@vue/language-server": "3.3.9",
"@vue/tsconfig": "^0.9.1",
"browserslist": "^4.28.8",
"cypress": "15.20.1",
"cypress-downloadfile": "1.2.4",
"cypress-mochawesome-reporter": "^5.0.0",
"dotenv": "^17.4.2",
"eslint": "10.8.1",
"eslint-plugin-oxlint": "1.78.0",
"eslint-plugin-pinia": "^0.4.2",
"eslint-plugin-vue": "^10.10.0",
"eslint-plugin-vuetify": "^2.7.2",
"lightningcss": "^1.33.0",
"npm-run-all2": "^9.0.3",
"oxfmt": "^0.63.0",
"oxlint": "1.78.0",
"postcss": "^8.5.26",
"postcss-html": "^1.8.1",
"sass": "^1.102.0",
"stylelint": "^17.14.1",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard-scss": "^17.0.0",
"typescript": "5.9.3",
"unplugin": "^3.3.0",
"unplugin-auto-import": "^21.1.0",
"vite": "^7.3.6",
"vite-plugin-vuetify": "^2.1.3",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "3.3.9"
}
}