generated from mantinedev/next-app-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.33 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"private": true,
"type": "module",
"name": "mantine-template",
"version": "0.4.0",
"description": "SaaS template built with Mantine, including AI chat, auth, admin dashboard, etc. MIT License.",
"keywords": [
"nextjs",
"mantine",
"react",
"typescript",
"saas",
"template"
],
"author": {
"name": "Keming He",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/keminghe/"
},
"license": "MIT",
"homepage": "https://mantine-template.buckeye.chat",
"repository": {
"type": "git",
"url": "git+https://github.com/KemingHe/mantine-template.git"
},
"bugs": {
"url": "https://github.com/KemingHe/mantine-template/issues/new",
"email": "[email protected]"
},
"scripts": {
"prepare": "husky",
"dev": "next dev",
"changeset": "changeset",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"lint": "biome ci .",
"lint:fix": "biome check --fix .",
"test:unit": "vitest",
"test:unit:watch": "vitest --watch",
"test:unit:coverage": "vitest --coverage",
"test": "pnpm test:unit",
"verify": "pnpm check:changesets && pnpm lint && pnpm check:types && pnpm test",
"check:changesets": "changeset status",
"check:types": "tsc",
"check:favicon": "realfavicon check -s cli 3000",
"scan:secrets": "ggshield secret scan repo .",
"start": "next start"
},
"dependencies": {
"@agentic/ai-sdk": "^7.6.4",
"@agentic/exa": "^7.6.4",
"@agentic/firecrawl": "^7.6.4",
"@agentic/google-custom-search": "^7.6.4",
"@agentic/weather": "^7.6.4",
"@ai-sdk/google": "^1.2.10",
"@ai-sdk/openai": "^1.3.10",
"@ai-sdk/react": "^1.2.8",
"@mantine/core": "^7.17.4",
"@mantine/hooks": "^7.17.4",
"@mantine/notifications": "^7.17.4",
"@tabler/icons-react": "^3.31.0",
"ai": "^4.3.5",
"next": "^15.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@next/bundle-analyzer": "^15.3.0",
"@storybook/nextjs": "^8.6.12",
"@storybook/preview-api": "^8.6.12",
"@storybook/react": "^8.6.12",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.14.1",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"postcss": "^8.5.3",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"realfavicon": "^0.4.18",
"storybook": "^8.6.12",
"storybook-dark-mode": "^4.0.2",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1"
},
"packageManager": "[email protected]+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"core-js-pure",
"esbuild",
"openai-zod-to-json-schema",
"sharp"
]
}
}