-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.92 KB
/
package.json
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
{
"name": "astor-web",
"type": "module",
"version": "0.0.1",
"engines": {
"node": "22.9.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"rootDir": "src",
"dependencies": {
"@astrojs/mdx": "^4.0.7",
"@astrojs/node": "^9.0.2",
"@astrojs/react": "^4.1.6",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.5",
"@mdxeditor/editor": "^3.21.1",
"astro": "^5.1.9",
"astro-imagetools": "^0.9.0",
"dayjs": "^1.11.13",
"framer-motion": "^12.0.6",
"lodash": "^4.17.21",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^9.0.3",
"react-tsparticles": "^2.12.2",
"remark": "^15.0.1",
"strip-markdown": "^6.0.0",
"tsparticles": "^3.8.0",
"tsparticles-engine": "^2.12.0",
"tsparticles-slim": "^2.12.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"zod": "^3.24.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@faker-js/faker": "^9.4.0",
"@storybook/addon-essentials": "^8.5.1",
"@storybook/addon-interactions": "^8.5.1",
"@storybook/addon-onboarding": "^8.5.1",
"@storybook/blocks": "^8.5.1",
"@storybook/react": "^8.5.1",
"@storybook/react-vite": "^8.5.1",
"@storybook/test": "^8.5.1",
"@tailwindcss/typography": "^0.5.16",
"@types/imagemin-mozjpeg": "^8.0.4",
"@types/imagemin-webp": "^7.0.3",
"@types/lodash": "^4.17.14",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/parser": "^8.21.0",
"@vheemstra/vite-plugin-imagemin": "^2.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.19.0",
"eslint-plugin-astro": "^1.3.1",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-webp": "^8.0.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"storybook": "^8.5.1",
"tailwindcss": "^3.4.17",
"typescript-eslint": "^8.21.0",
"vite-imagetools": "^7.0.5",
"vite-tsconfig-paths": "^5.1.4"
},
"moduleNameMapper": {
"^~components/(.*)$": "<rootDir>/../src/components/$1",
"^~content/(.*)$": "<rootDir>/../src/content/$1",
"^~layouts/(.*)$": "<rootDir>/../src/layouts/$1",
"^~pages/(.*)$": "<rootDir>/../src/pages/$1",
"^~services/(.*)$": "<rootDir>/../src/services/$1",
"^~types/(.*)$": "<rootDir>/../src/types/$1",
"^~styles/(.*)$": "<rootDir>/../src/styles/$1",
"^~assets/(.*)$": "<rootDir>/../src/assets/$1",
"^~hooks/(.*)$": "<rootDir>/../src/hooks/$1",
"^~constants/(.*)$": "<rootDir>/../src/constants/$1",
"^~utils/(.*)$": "<rootDir>/../src/utils/$1",
"^~/(.*)$": "<rootDir>/../src/$1"
}
}