-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.55 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@digitalservicebund/ris-ui",
"version": "0.0.1",
"description": "Component library for NeuRIS",
"author": "digitalservicebund",
"license": "GPL-3.0-only",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/digitalservicebund/ris-ui.git"
},
"files": [
"dist"
],
"exports": {
"./primevue": {
"require": "./dist/primevue/index.cjs",
"import": "./dist/primevue/index.js",
"types": "./dist/primevue/index.d.ts"
},
"./primevue/style.css": {
"import": "./dist/style.css"
},
"./tailwind": {
"require": "./dist/tailwind/index.cjs",
"import": "./dist/tailwind/index.js",
"types": "./dist/tailwind/index.d.ts"
},
"./fonts.css": {
"import": "./dist/fonts.css"
},
"./components": {
"require": "./dist/components/index.cjs",
"import": "./dist/components/index.js",
"types": "./dist/components/index.d.ts"
}
},
"scripts": {
"storybook": "storybook dev -p 6006",
"prebuild": "npm run sync-fonts",
"build": "vite build && vue-tsc --build tsconfig.lib.json --force",
"prebuild:storybook": "npm run sync-fonts",
"build:storybook": "storybook build",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write --ignore-unknown .",
"eslint:check": "eslint --max-warnings=0 --no-warn-ignored",
"eslint:fix": "npm run eslint:check -- --fix",
"audit:licenses": "license-checker --production --excludePrivatePackages --excludePackages @digitalservicebund/ris-ui@$(cat package.json | jq -r '.version') --onlyAllow \"$(. ./parse-allowed-licenses.sh)\" --csv --out ./frontend-license-report.csv",
"typecheck": "vue-tsc",
"sync-fonts": "rm ./public/fonts/*.woff ./public/fonts/*.woff2; cp ./node_modules/@digitalservice4germany/angie/fonts/* ./public/fonts/; cp ./node_modules/@digitalservice4germany/angie/fonts.css ./public/",
"test": "vitest run",
"test:watch": "vitest watch"
},
"peerDependencies": {
"primevue": "^4.0.0",
"vue": "^3.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "~19.6.0",
"@digitalservice4germany/angie": "~1.2.0",
"@digitalservice4germany/style-dictionary": "~2.0.0",
"@eslint/compat": "~1.2.2",
"@eslint/js": "~9.14.0",
"@iconify-json/ic": "^1.2.1",
"@iconify-json/material-symbols": "~1.2.6",
"@iconify-json/mdi": "~1.2.1",
"@iconify/vue": "~4.1.2",
"@storybook/addon-essentials": "~8.4.2",
"@storybook/blocks": "~8.4.2",
"@storybook/manager-api": "~8.4.2",
"@storybook/theming": "~8.4.2",
"@storybook/vue3": "~8.4.2",
"@storybook/vue3-vite": "~8.4.2",
"@testing-library/jest-dom": "~6.6.3",
"@testing-library/user-event": "~14.5.2",
"@testing-library/vue": "~8.1.0",
"@types/lodash": "^4.17.13",
"@vitejs/plugin-vue": "~5.2.1",
"@vue/test-utils": "~2.4.6",
"autoprefixer": "~10.4.20",
"eslint": "~9.14.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "~15.12.0",
"jsdom": "~25.0.1",
"license-checker": "~25.0.1",
"lodash": "^4.17.21",
"msw": "~2.6.0",
"msw-storybook-addon": "~2.0.3",
"prettier": "~3.4.1",
"prettier-plugin-tailwindcss": "~0.6.8",
"storybook": "~8.4.2",
"storybook-vue3-router": "~5.0.0",
"tailwindcss": "~3.4.14",
"typescript": "~5.6.3",
"typescript-eslint": "~8.13.0",
"unplugin-icons": "~0.21.0",
"vite": "~5.4.10",
"vitest": "~2.1.4",
"vue-tsc": "~2.1.10"
},
"msw": {
"workerDirectory": [
"public"
]
}
}