-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.77 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.77 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@serendie/site",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "run-p build:panda build:componentsManifest && astro dev",
"start": "astro dev",
"preview": "astro preview",
"preview:workers": "run-s build build:wrangler",
"build": "run-s build:prepare build:main build:post",
"build:prepare": "run-p build:panda build:componentsManifest build:figma-component-keys",
"build:main": "run-s build:preview build:astro",
"build:post": "cp _redirects dist/_redirects && echo '_worker.js' >> dist/.assetsignore && echo '_routes.json' >> dist/.assetsignore",
"build:astro": "astro build",
"build:astro:check": "astro check && astro build",
"build:componentsManifest": "tsx scripts/generateComponentsManifest/index.ts",
"build:figma-component-keys": "node --import tsx ./scripts/generateFigmaComponentKeys/index.ts",
"build:panda": "panda cssgen -m --clean && panda codegen",
"build:preview": "tsx scripts/buildPreviewHtml/build.ts",
"build:tokens": "node tokens/build.js",
"build:wrangler": "npx wrangler dev",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:mcp": "tsx src/mcp/test-client.ts",
"translations:lint": "node --import tsx ./scripts/translations/lint.ts",
"translations:pull": "node --import tsx ./scripts/translations/pull.ts",
"translations:push": "node --import tsx ./scripts/translations/push.ts",
"svg:tokenize": "tsx scripts/svgColorToToken/index.ts",
"svg:tokenize:dir": "tsx scripts/svgColorToToken/index.ts --directory",
"svg:tokenize:recursive": "tsx scripts/svgColorToToken/index.ts --directory --recursive",
"astro": "astro",
"panda": "panda"
},
"dependencies": {
"@ark-ui/react": "^5.13.0",
"@astrojs/check": "^0.9.2",
"@astrojs/cloudflare": "^12.6.0",
"@astrojs/mdx": "^4.3.0",
"@astrojs/react": "^4.3.0",
"@astrojs/sitemap": "^3.6.0",
"@eslint/js": "^9.15.0",
"@hono/mcp": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.20.2",
"@pandacss/eslint-plugin": "^0.2.2",
"@serendie/design-token": "dev",
"@serendie/style-dictionary-formatter": "^0.0.3",
"@serendie/symbols": "^1.0.1",
"@serendie/ui": "^2.2.0",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"astro": "^5.10.0",
"embla-carousel": "^8.2.1",
"embla-carousel-react": "^8.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"framer-motion": "^11.3.24",
"hono": "^4.8.2",
"prettier": "^3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-responsive": "^10.0.0",
"shiki": "^1.10.3",
"style-dictionary": "^3.9.2",
"style-dictionary-utils": "^2.0.7",
"typescript-eslint": "^8.16.0",
"use-mcp": "^0.0.9",
"zod": "^3.25.67"
},
"devDependencies": {
"@astrojs/partytown": "^2.1.4",
"@babel/parser": "^7.27.5",
"@babel/traverse": "^7.27.4",
"@pandacss/dev": "^1.9.0",
"@types/babel__traverse": "^7.20.7",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"glob": "^13.0.6",
"happy-dom": "^20.8.4",
"npm-run-all2": "^8.0.4",
"react-docgen-typescript": "^2.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite-plugin-singlefile": "^2.3.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^3.2.4",
"wrangler": "^4.20.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.14.3"
},
"overrides": {
"axios": "1.13.6"
}
}