-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.65 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cornucopia-website",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"prebuild": "echo I run before the build script",
"productionbuild": "vite build && node ./script/headers.js && npx svelte-sitemap --domain https://cornucopia.owasp.org --ignore 404 --ignore cards/COM* --ignore cards/DVE* --ignore cards/AC* --ignore cards/CO*",
"lint": "eslint .",
"build": "svelte-kit sync && npm run lint && vite build && node ./script/headers.js && npx svelte-sitemap --domain https://cornucopia.owasp.org --ignore 404 --ignore cards/COM* --ignore cards/DVE* --ignore cards/AC* --ignore cards/CO*",
"build-stage": "svelte-kit sync && vite build && node ./script/headers-stage.js && npx svelte-sitemap --domain https://owaspcornucopia.org --ignore 404 --ignore cards/COM* --ignore cards/DVE* --ignore cards/AC* --ignore cards/CO*",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"smoke-test": "node ./script/smoke-test.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/adapter-cloudflare": "^7.2.6",
"@sveltejs/kit": "^2.65.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/node": "^25.9.3",
"@typescript-eslint/parser": "^8.61.0",
"@vitest/coverage-v8": "^4.1.8",
"dotenv": "^17.4.2",
"eslint": "^10.4.1",
"eslint-plugin-svelte": "^3.19.0",
"globals": "^17.6.0",
"serve": "^14.2.6",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"svelte-eslint-parser": "^1.8.0",
"svelte-sitemap": "^3.2.0",
"then-request": "^6.0.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vite": "^7.3.2",
"vitest": "^4.1.8",
"wait-on": "^9.0.10",
"wrangler": "4.99.0"
},
"type": "module",
"dependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@types/js-yaml": "^4.0.9",
"front-matter": "^4.0.2",
"js-yaml": "^4.2.0",
"normalize.css": "^8.0.1",
"svelte-i18n": "^4.0.1",
"svelte-markdown": "^0.4.1",
"sveltekit-i18n": "^2.4.2",
"swagger-ui-dist": "^5.32.6",
"sync-request": "^6.1.0",
"vite-plugin-restart": "^2.0.0",
"vite-plugin-static-copy": "^4.1.1"
},
"pnpm": {
"auditConfig": {
"ignoreCves": [],
"ignoreGhsas": [
"GHSA-vg6x-rcgg-rjx6",
"GHSA-67mh-4wv8-2f99",
"GHSA-mh29-5h37-fv8m",
"GHSA-m56q-vw4c-c2cp",
"GHSA-f7gr-6p89-r883",
"GHSA-h7h7-mm68-gmrc",
"GHSA-crpf-4hrx-3jrp",
"GHSA-33hq-fvwr-56pm",
"GHSA-8qm3-746x-r74r"
]
},
"overrides": {
"cookie@<0.7.0": ">=0.7.0"
}
}
}