-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.39 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.39 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
{
"name": "mantine-next-nextra-template",
"version": "1.11.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind && npx tsx scripts/build-index.ts",
"build:pagefind": "pagefind --site .next/server/app --output-path public/_pagefind",
"build:index": "npx tsx scripts/build-index.ts",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "npm run eslint && npm run stylelint",
"eslint": "next lint",
"stylelint": "stylelint '**/*.css' --cache",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/react": "^1.2.12",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/view": "^6.37.2",
"@floating-ui/react-dom": "^2.0.0",
"@gfazioli/mantine-marquee": "^2.2.7",
"@gfazioli/mantine-text-animate": "^1.0.3",
"@mantine/core": "^8.0.0",
"@mantine/hooks": "^8.0.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/bundle-analyzer": "^15.3.1",
"@octokit/rest": "^22.0.0",
"@paper-design/shaders-react": "0.0.53",
"@tabler/icons-react": "^3.31.0",
"@uiw/codemirror-theme-vscode": "^4.23.12",
"@uiw/react-codemirror": "^4.23.12",
"ai": "^4.3.16",
"framer-motion": "12.23.14",
"gray-matter": "^4.0.3",
"internmap": "^2.0.3",
"next": "15.3.8",
"next-auth": "^4.24.11",
"nextra": "4.3.0-alpha.22",
"nextra-theme-docs": "4.3.0-alpha.22",
"openai": "^4.103.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"solc": "^0.8.30",
"swr": "^2.3.3",
"webpack": "^5.99.9",
"zod": "^3.25.36"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@eslint/js": "^9.26.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@storybook/nextjs": "^8.6.12",
"@storybook/react": "^8.6.12",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/eslint-plugin-jsx-a11y": "^6.10.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.11",
"@types/react": "19.1.3",
"@types/react-syntax-highlighter": "^15.5.13",
"babel-loader": "^10.0.0",
"eslint": "^9.26.0",
"eslint-config-mantine": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pagefind": "^1.4.0",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.3",
"storybook": "^8.6.12",
"storybook-dark-mode": "^4.0.2",
"stylelint": "^16.19.1",
"stylelint-config-standard-scss": "^14.0.0",
"ts-jest": "^29.3.2",
"tsx": "^4.20.5",
"typescript": "5.8.3",
"typescript-eslint": "^8.32.0"
},
"packageManager": "yarn@4.9.1"
}