-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.41 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
{
"name": "reference-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"lint": "eslint . --ignore-pattern node_modules --ignore-pattern dist --ignore-pattern packages/types/src/index.ts --ignore-pattern \".cache\" --ignore-pattern public",
"lint:fix": "pnpm lint --fix",
"preview": "vite preview",
"format": "prettier --write \"**/*\"",
"typecheck": "tsc --noEmit",
"test": "vitest run --config vite.config.ts",
"test:watch": "vitest watch --config vite.config.ts",
"test:ci": "vitest run --config vite.config.ts --coverage"
},
"packageManager": "pnpm@9.15.9",
"dependencies": {
"@code-hike/mdx": "0.9.0",
"@marigold/components": "11.3.0",
"@marigold/icons": "1.3.4",
"@marigold/system": "^11.3.0",
"@marigold/theme-core": "28.3.0",
"@marigold/theme-docs": "^2.4.5",
"@marigold/theme-plugins": "^1.0.1",
"@mdx-js/rollup": "3.1.1",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "4.3.2",
"@tanstack/react-query": "5.96.1",
"@tanstack/react-query-devtools": "5.96.1",
"@tanstack/react-router": "1.167.5",
"@vercel/analytics": "^1.5.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"tailwind-merge": "3.6.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@marigold/eslint-config": "1.0.0",
"@marigold/prettier-config": "0.3.1",
"@tailwindcss/postcss": "4.3.2",
"@tanstack/router-devtools": "1.166.9",
"@tanstack/router-vite-plugin": "1.166.14",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/jest": "29.5.14",
"@types/node": "22.19.21",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@types/react-test-renderer": "19.1.0",
"@typescript-eslint/eslint-plugin": "8.62.1",
"@typescript-eslint/parser": "8.62.1",
"@vitejs/plugin-react-swc": "3.11.0",
"@vitest/coverage-v8": "3.2.6",
"eslint": "^9.24.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.5.3",
"eslint-plugin-tailwindcss": "3.18.3",
"globals": "^16.0.0",
"jsdom": "26.1.0",
"postcss": "8.5.16",
"prettier": "3.8.4",
"react-test-renderer": "19.2.7",
"tailwindcss": "4.3.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.29.1",
"vite": "6.4.3",
"vitest": "3.2.6"
}
}