-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.34 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.34 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
{
"name": "@eeaas/source",
"description": "Easter eggs as a service",
"scripts": {
"update-packages": "npx npm-check-updates -u"
},
"private": true,
"dependencies": {
"@docusaurus/core": "3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mdx-js/react": "^3.1.1",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/tsconfig": "3.9.2",
"@docusaurus/types": "3.9.2",
"@eslint/js": "^10.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@nx-extend/docusaurus": "^5.0.0",
"@nx/eslint": "22.4.5",
"@nx/eslint-plugin": "22.4.5",
"@nx/js": "22.4.5",
"@nx/react": "22.4.5",
"@nx/vite": "22.4.5",
"@nx/web": "22.4.5",
"@swc-node/register": "^1.11.1",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.11",
"@swc/helpers": "^0.5.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.2.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.3",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"gh-pages": "^6.3.0",
"jiti": "^2.6.1",
"jsdom": "^28.0.0",
"jsonc-eslint-parser": "^2.4.2",
"nx": "22.4.5",
"prettier": "^3.8.1",
"raw-loader": "^4.0.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"verdaccio": "^6.2.5",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"nx": {
"includedScripts": [],
"targets": {
"local-registry": {
"executor": "@nx/js:verdaccio",
"options": {
"port": 4873,
"config": ".verdaccio/config.yml",
"storage": "tmp/local-registry/storage"
}
}
}
}
}