-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.52 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
{
"name": "systemcraft",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"prebuild": "playwright install",
"preview": "astro preview",
"astro": "astro",
"test": "firebase emulators:exec --only firestore \"vitest --run\"",
"coverage": "vitest run --coverage",
"fmt": "prettier --write ."
},
"dependencies": {
"@astrojs/preact": "^4.1.1",
"@tanstack/react-query": "^5.90.2",
"astro": "^5.6.1",
"firebase": "^12.3.0",
"preact": "^10.27.2",
"tailwindcss": "^4.1.13"
},
"devDependencies": {
"@astrojs/mdx": "^4.3.6",
"@astrojs/rss": "^4.0.12",
"@astrojs/sitemap": "^3.6.0",
"@firebase/rules-unit-testing": "^5.0.0",
"@firebase/testing": "^0.20.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.13",
"@viz-js/viz": "^3.20.0",
"archiver": "^7.0.1",
"astro-expressive-code": "^0.41.3",
"mermaid": "^11.12.0",
"playwright": "^1.55.1",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"rehype-mermaid": "^3.0.0",
"sharp": "^0.34.2",
"tailwind-merge": "^3.3.1",
"vite": "^7.1.9",
"vitest": "^3.2.4"
},
"overrides": {
"react": "npm:@preact/compat@latest",
"react-dom": "npm:@preact/compat@latest"
},
"prettier": {
"trailingComma": "all",
"semi": true,
"singleQuote": false,
"useTabs": true,
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-tailwindcss",
"prettier-plugin-organize-imports"
]
}
}