-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 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
{
"name": "htmlang",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "npm exec eslint",
"preview": "vite preview",
"test": "vitest run src",
"test:coverage": "vitest run src --coverage",
"test:watch": "vitest src",
"test:watch:coverage": "vitest src --coverage",
"test:ui": "vitest --ui",
"test:ui:coverage": "vitest --ui --coverage"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-istanbul": "^2.1.5",
"@vitest/ui": "^2.1.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^5.4.10",
"vitest": "^2.1.5"
},
"dependencies": {
"uuid": "^11.0.3"
}
}