-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.96 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
{
"name": "liftkit-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"registry": "node ./registry.js && shadcn build",
"start": "next start",
"pretty": "prettier --check .",
"lint": "next lint",
"lint:css": "stylelint registry/**/*.css src/**/*.css",
"test": "vitest",
"list:types": "ts-node scripts/list-types.ts",
"find:type-usages": "ts-node scripts/find-type-usages.ts"
},
"dependencies": {
"@csstools/normalize.css": "^12.1.1",
"@floating-ui/react-dom": "^2.1.3",
"@material/material-color-utilities": "^0.3.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^15.4.7",
"lucide-react": "^0.487.0",
"material-dynamic-colors": "^1.1.2",
"next": "^15.4.10",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"shadcn": "2.4.0-canary.12",
"stylelint": "^16.19.1",
"stylelint-no-unsupported-browser-features": "^8.0.4"
},
"devDependencies": {
"@eslint/css": "^0.7.0",
"@eslint/js": "^9.25.1",
"@eslint/json": "^0.12.0",
"@next/eslint-plugin-next": "15.3.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "19.1.5",
"@types/react-dom": "19.1.5",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.25.1",
"eslint-config-next": "^15.4.0-canary.51",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.37.5",
"fast-glob": "^3.3.3",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"prettier": "3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.2"
},
"overrides": {
"@types/react": "19.1.5",
"@types/react-dom": "19.1.5"
}
}