-
Notifications
You must be signed in to change notification settings - Fork 364
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.44 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.44 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
{
"name": "mantine-next-template",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --port 1764",
"analyze": "ANALYZE=true next build",
"build": "next build && echo 'ui.mantine.dev' > out/CNAME && touch out/.nojekyll",
"deploy": "npm run build && gh-pages -d out",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "oxlint data components lib pages",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx,css}\"",
"jest": "jest",
"jest:watch": "jest --watch",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@mantine/carousel": "9.0.0-alpha.7",
"@mantine/code-highlight": "9.0.0-alpha.7",
"@mantine/core": "9.0.0-alpha.7",
"@mantine/dropzone": "9.0.0-alpha.7",
"@mantine/form": "9.0.0-alpha.7",
"@mantine/hooks": "9.0.0-alpha.7",
"@mantine/spotlight": "9.0.0-alpha.7",
"@mantinex/dev-icons": "^2.0.0",
"@mantinex/mantine-header": "^2.0.0",
"@mantinex/mantine-logo": "^2.0.0",
"@mantinex/mantine-meta": "^2.0.0",
"@next/bundle-analyzer": "^16.1.5",
"@tabler/icons-react": "^3.36.1",
"dayjs": "^1.11.19",
"embla-carousel": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"next": "16.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"shiki": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@storybook/addon-themes": "^10.2.0",
"@storybook/nextjs": "^10.2.0",
"@storybook/react": "^10.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/jest-axe": "^3.5.9",
"@types/node": "^25.0.10",
"@types/react": "19.2.14",
"babel-loader": "^10.0.0",
"gh-pages": "^6.3.0",
"jest": "^30.2.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "^30.2.0",
"oxlint": "^1.58.0",
"postcss": "^8.5.6",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.1",
"storybook": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^6"
},
"packageManager": "yarn@4.13.0"
}