-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.66 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.66 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "a-george-dev",
"version": "0.0.0",
"license": "MIT",
"private": true,
"packageManager": "yarn@4.9.2",
"scripts": {
"dev": "nx dev ageorgedev",
"test": "nx run-many --target=test --passWithNoTests",
"preinstall": "git config core.hooksPath .git-hooks",
"affected-projects": "nx print-affected --select=projects",
"clean-dist": "rm -rf dist && find ./libs -type d -name dist -exec rm -rf {} + && find ./apps -type d -name dist -exec rm -rf {} +",
"storybook": "nx storybook design-system",
"decap-server": "npx decap-server",
"shadcn": "yarn dlx shadcn"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-react": "^7.26.3",
"@eslint/compat": "^1.3.0",
"@eslint/eslintrc": "^2.1.1",
"@eslint/js": "~8.57.0",
"@nx/cypress": "21.2.4",
"@nx/devkit": "21.2.4",
"@nx/eslint": "21.2.4",
"@nx/eslint-plugin": "21.2.4",
"@nx/jest": "21.2.4",
"@nx/js": "21.2.4",
"@nx/next": "21.2.4",
"@nx/react": "21.2.4",
"@nx/storybook": "21.2.4",
"@nx/vite": "21.2.4",
"@nx/workspace": "21.2.4",
"@storybook/addon-a11y": "^9.0.17",
"@storybook/addon-themes": "9.0.17",
"@storybook/react-vite": "9.0.17",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.6.0",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.17",
"@testing-library/cypress": "9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "16.1.0",
"@types/jest": "29.5.14",
"@types/node": "18.16.9",
"@types/ramda": "^0.28.23",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "4.0.4",
"autoprefixer": "^10.4.13",
"babel-jest": "29.7.0",
"cypress": "14.4.0",
"eslint": "^9.8.0",
"eslint-config-next": "15.5.9",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-cypress": "^3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-playwright": "^0.15.3",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-storybook": "9.0.17",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jiti": "2.4.2",
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"nx": "21.2.4",
"postcss": "8.4.38",
"postcss-nesting": "^12.1.5",
"prettier": "3",
"prettier-plugin-tailwindcss": "^0.6.12",
"sass": "^1.55.0",
"tailwindcss": "^4.1.8",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.8.3",
"typescript-eslint": "^8.29.0",
"vite": "6.3.5",
"vite-plugin-dts": "4.5.4",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "4.2.0"
},
"workspaces": [
"libs/*",
"apps/*"
],
"dependencies": {
"@mdx-js/loader": "3.1.0",
"@mdx-js/react": "3.1.0",
"@next/mdx": "15.5.9",
"@nx/plugin": "21.2.4",
"@phosphor-icons/react": "2.1.10",
"@tailwindcss/postcss": "^4.1.10",
"@types/mdx": "^2.0.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.522.0",
"next": "15.5.9",
"param-case": "^3.0.4",
"ramda": "^0.28.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-syntax-highlighter": "^15.5.0",
"remark-frontmatter": "5.0.0",
"remark-mdx-frontmatter": "5.2.0",
"storybook": "9.0.17",
"tailwind-merge": "^3.3.1",
"tslib": "^2.3.0",
"tw-animate-css": "^1.3.4"
},
"engines": {
"node": ">=22.14.1"
},
"volta": {
"node": "22.18.0",
"yarn": "4.9.2"
},
"resolutions": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
}
}