-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 2.11 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
{
"name": "kiss-frontend",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom --coverage",
"test:unitci": "vitest run --environment jsdom",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "npm run lint:es && npm run lint:style --- --custom-formatter @csstools/stylelint-formatter-github",
"lint:es": "eslint .",
"lint:fix": "npm run lint:format && npm run lint:es --- --fix && npm run lint:style --- --fix",
"lint:format": "prettier --write --ignore-path .gitignore **/*.{scss,vue,css,ts,js,cjs,mjs}",
"lint:style": "stylelint \"**/*.{css,scss,vue}\" --ignore-path .gitignore"
},
"dependencies": {
"@ckeditor/ckeditor5-vue": "^7.3.0",
"@vueuse/core": "^8.9.4",
"ckeditor5": "^44.1.0",
"dompurify": "^3.2.3",
"nanoid": "^5.0.9",
"pinia": "^2.3.1",
"swrv": "^1.0.3",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@csstools/stylelint-formatter-github": "^1.0.0",
"@eslint/js": "^9.18.0",
"@tsconfig/node18": "^18.2.0",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.17.0",
"@utrecht/component-library-css": "1.0.0-alpha.361",
"@utrecht/component-library-vue": "1.0.0-alpha.138",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.0.3",
"@vitest/eslint-plugin": "1.1.25",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.3.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.7",
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"msw": "^2.7.0",
"prettier": "^3.3.3",
"sass": "^1.83.4",
"stylelint": "^16.13.2",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"typescript": "~5.6.3",
"vite": "^6.0.11",
"vitest": "^3.0.3",
"vue-tsc": "^2.1.10"
}
}