-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.81 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.81 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
{
"name": "BASE_NAME.frontend",
"packageManager": "yarn@4.12.0",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite --host",
"build": "vite build",
"lint:css": "stylelint (styles|static)/**/*.{scss,css}",
"lint:js": "eslint scripts/**/*.{js,mjs}",
"test": "vitest run",
"test:chrome": "vitest run --browser.name=chrome --browser.headless",
"test:safari": "vitest run --browser.name=safari",
"test:ui": "vitest --ui",
"test:watch": "vitest --coverage",
"test:coverage-report": "vitest run --coverage && npx --yes open-cli ./coverage/index.html",
"test:ci": "vitest run --reporter=junit --coverage --outputFile=test-results/junit.xml"
},
"devDependencies": {
"@codecov/vite-plugin": "^1.9.1",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@stylistic/stylelint-plugin": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@vitest/browser": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/eslint-plugin": "^1.6.5",
"@vitest/ui": "^4.0.16",
"autoprefixer": "^10.4.23",
"browserslist": "^4.28.1",
"cssnano": "^7.1.2",
"esbuild": "^0.27.2",
"esbuild-plugin-browserslist": "^2.0.0",
"eslint": "^10.0.2",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-jsdoc": "^61.5.0",
"eslint-plugin-testing-library": "^7.15.4",
"jsdom": "^27.4.0",
"jsdom-testing-mocks": "^1.16.0",
"postcss": "^8.5.6",
"postcss-scss": "^4.0.9",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-visualizer": "^6.0.5",
"sass": "^1.97.2",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-config-standard-scss": "^16.0.0",
"typescript": "^5.9.3",
"undici": "^7.18.2",
"vite": "^7.3.1",
"vite-plugin-mkcert": "^1.17.9",
"vitest": "^4.0.16",
"webdriverio": "^9.23.0"
}
}