-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·54 lines (54 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.47 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
{
"name": "codariq-landing",
"type": "module",
"version": "1.1.0",
"date": "2025-01-10",
"description": "Astro-powered landing page for codariq - kontrollierbare KI-Agenten mit Datenwegen, Freigaben und Logs",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext .js,.ts,.astro",
"lint:fix": "eslint . --ext .js,.ts,.astro --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"lint-staged": {
"*.{js,ts,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@tailwindcss/vite": "^4.3.0",
"astro": "^6.3.1",
"gsap": "^3.15.0",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@astrojs/sitemap": "^3.7.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.60.0",
"@testing-library/dom": "^10.4.1",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"vitest": "^4.1.6"
}
}