-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.37 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
{
"name": "ecocode-dashboard",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"serve:sonar": "node src/api/sonar/mock/server.js",
"sonar": "pnpm coverage && pnpm exec sonar-scanner -Dsonar.login=$SONAR",
"test:e2e": "playwright test",
"lint": "eslint . --fix",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"lodash": "^4.17.21",
"vue": "^3.4.29",
"vue3-toastify": "^0.2.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@ecocode/eslint-plugin": "^1.5.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.8.0",
"@playwright/test": "^1.44.1",
"@storybook/addon-a11y": "^8.1.10",
"@storybook/addon-coverage": "^1.0.4",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/blocks": "^8.1.10",
"@storybook/test": "^8.2.2",
"@storybook/vue3": "^8.1.10",
"@storybook/vue3-vite": "^8.1.10",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"axe-playwright": "^2.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.9.0",
"jsdom": "^24.1.0",
"msw": "^2.3.1",
"prettier": "3.2.5",
"sonar-scanner": "^3.1.0",
"storybook": "^8.2.2",
"storybook-vscode-component": "^1.0.9",
"test-runner-with-snap-speed-exp": "^0.0.1",
"transform": "link:@storybook/test-runner/playwright/transform",
"vite": "^5.3.1",
"vite-plugin-vue-devtools": "^7.3.1",
"vitest": "^1.6.0"
},
"msw": {
"workerDirectory": [
"public"
]
},
"packageManager": "[email protected]+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}