-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.7 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
{
"name": "BASE_NAME.frontend",
"packageManager": "yarn@4.13.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": "^5.10.0",
"@stylistic/stylelint-plugin": "^5.1.0",
"@testing-library/dom": "^10.4.1",
"@vitest/browser": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.16",
"@vitest/ui": "^4.1.5",
"autoprefixer": "^10.5.0",
"cssnano": "^7.1.5",
"eslint": "^9.39.4",
"eslint-plugin-compat": "^6.2.1",
"eslint-plugin-jsdoc": "^61.7.1",
"eslint-plugin-testing-library": "^7.16.2",
"jsdom": "^29.0.2",
"jsdom-testing-mocks": "^1.16.0",
"postcss": "^8.5.9",
"postcss-scss": "^4.0.9",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-visualizer": "^7.0.1",
"sass": "^1.99.0",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"typescript": "^6.0.2",
"undici": "^8.1.0",
"vite": "^8.0.8",
"vite-plugin-mkcert": "^2.0.0",
"vitest": "^4.1.5",
"webdriverio": "^9.23.2"
}
}