forked from mantinedev/ui.mantine.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.39 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
{
"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 -t true",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx,css}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@hello-pangea/dnd": "^16.3.0",
"@mantine/carousel": "7.4.2",
"@mantine/core": "7.4.2",
"@mantine/dropzone": "7.4.2",
"@mantine/form": "7.4.2",
"@mantine/hooks": "7.4.2",
"@mantine/spotlight": "7.4.2",
"@mantinex/dev-icons": "^1.0.1",
"@mantinex/mantine-header": "^1.0.1",
"@mantinex/mantine-logo": "^1.0.1",
"@mantinex/mantine-meta": "^1.0.1",
"@mantinex/shiki": "^1.0.2",
"@next/bundle-analyzer": "^14.0.3",
"@tabler/icons-react": "^2.41.0",
"dayjs": "^1.11.10",
"embla-carousel-react": "^7.1.0",
"next": "14.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"shikiji": "^0.7.4"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@next/eslint-plugin-next": "^14.0.3",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/blocks": "^7.5.3",
"@storybook/nextjs": "^7.5.3",
"@storybook/react": "^7.5.3",
"@types/node": "^20.9.3",
"@types/react": "18.2.38",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"babel-loader": "^9.1.3",
"eslint": "^8.54.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-mantine": "3.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.1.2",
"gh-pages": "^6.1.0",
"postcss": "^8.4.31",
"postcss-preset-mantine": "1.11.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.1.0",
"storybook": "^7.5.3",
"storybook-dark-mode": "^3.0.1",
"typescript": "5.3.2"
},
"packageManager": "yarn@4.0.2"
}