-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.15 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
{
"name": "bi0s-pentest",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:watch": "vitest --watch",
"test": "vitest --run --coverage",
"lint": "prettier --check . && eslint .",
"format": "prettier --check --write .",
"prepare": "husky",
"commit": "commit",
"commitlint": "commitlint --from HEAD~1 --to HEAD --verbose",
"ci": "npm run commitlint && npm run lint && npm run build && npm run test",
"ncu": "npm-check-updates",
"ncu:upgrade": "npm-check-updates -u"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/prompt-cli": "^19.0.3",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.2",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@types/dompurify": "^3.0.5",
"@types/eslint": "8.56.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"husky": "^9.0.11",
"npm-check-updates": "^16.14.15",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"svelte": "^4.2.12",
"svelte-check": "^3.6.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unlighthouse": "^0.11.4",
"vite": "^5.1.4",
"vitest": "^1.3.1"
},
"type": "module",
"dependencies": {
"@octokit/rest": "^20.0.2",
"@xterm/addon-fit": "^0.9.0",
"@xterm/addon-web-links": "^0.10.0",
"@xterm/xterm": "^5.4.0",
"dompurify": "^3.0.9",
"highlight.js": "^11.9.0",
"marked": "^12.0.0",
"marked-alert": "^2.0.1",
"marked-directive": "^1.0.5",
"marked-emoji": "^1.3.2",
"marked-footnote": "^1.2.2",
"marked-highlight": "^2.1.1",
"marked-katex-extension": "^5.0.1",
"marked-linkify-it": "^3.1.9",
"marked-mangle": "^1.1.7",
"tlds": "^1.250.0"
}
}