-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "hexagon-generator",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"architecture": "madge --extensions ts,tsx --exclude \"^.*\\.(spec\\.(ts|tsx)|css)$\" --image graph.svg src/",
"dev": "vite",
"build": "tsc && vite build",
"format:check": "prettier --check src",
"format:fix": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"preview": "vite preview",
"test": "vitest --silent",
"test:coverage": "vitest --silent run --coverage",
"test:e2e": "playwright test",
"type:check": "tsc",
"prepare": "husky"
},
"keywords": [
"typescript",
"html5",
"css3"
],
"author": "WV",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@eslint/js": "^9.8.0",
"@playwright/test": "^1.47.1",
"@types/dompurify": "^3.0.5",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"git-commit-msg-linter": "^5.0.8",
"globals": "^15.9.0",
"happy-dom": "^15.10.2",
"husky": "^9.1.5",
"madge": "^8.0.0",
"markdownlint-cli2": "^0.14.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.14",
"vitest": "^2.0.5"
},
"dependencies": {
"dompurify": "^3.1.6"
}
}