generated from it-at-m/refarch-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "refarch-webcomponent",
"version": "0.0.0",
"type": "module",
"private": true,
"license": "MIT",
"engines": {
"node": ">=22.14 <=22"
},
"scripts": {
"dev": "vite",
"test": "vitest run",
"build": "vue-tsc --build --noCheck && vite build && npm run post-build",
"post-build": "node ./processes/post-build.js && cyclonedx-npm --omit dev --omit optional --output-reproducible -o dist/application.cdx.json --validate",
"preview": "vite preview",
"lint": "prettier . --check && eslint . && vue-tsc --build --noEmit",
"fix": "prettier . --write && eslint . --fix"
},
"dependencies": {
"@muenchen/muc-patternlab-vue": "5.7.0",
"@vueuse/core": "13.9.0",
"vue": "3.5.30"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "4.0.3",
"@muenchen/prettier-codeformat": "1.0.2",
"@tsconfig/node-lts": "22.0.4",
"@types/node": "22.14.1",
"@vitejs/plugin-vue": "6.0.5",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.6.0",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.8.1",
"eslint": "9.35.0",
"eslint-plugin-vue": "10.4.0",
"jsdom": "27.0.1",
"prettier": "3.6.2",
"typescript": "5.9.3",
"vite": "7.1.12",
"vite-plugin-vue-devtools": "8.0.7",
"vitest": "3.2.4",
"vue-tsc": "3.0.10"
}
}