forked from mantinedev/ui.mantine.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.34 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.34 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
{
"name": "mantine-next-template",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --port 1764",
"analyze": "ANALYZE=true next build",
"build": "next build && next export && cp -R ./CNAME ./out/CNAME && touch out/.nojekyll",
"deploy": "npm run build && gh-pages -d out -t true",
"start": "next start",
"export": "next build && next export",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"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.0.0",
"@mantine/code-highlight": "7.0.0",
"@mantine/core": "7.0.0",
"@mantine/dropzone": "7.0.0",
"@mantine/ds": "7.0.0",
"@mantine/form": "7.0.0",
"@mantine/hooks": "7.0.0",
"@mantine/spotlight": "7.0.0",
"@next/bundle-analyzer": "^13.4.4",
"@tabler/icons-react": "^2.20.0",
"dayjs": "^1.11.9",
"embla-carousel-react": "^7.1.0",
"next": "13.4.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@next/eslint-plugin-next": "^13.4.4",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.0.18",
"@storybook/nextjs": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/testing-library": "^0.1.0",
"@types/node": "^20.2.5",
"@types/react": "18.2.7",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"babel-loader": "^9.1.2",
"eslint": "^8.41.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-mantine": "2.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.11.0",
"gh-pages": "^6.0.0",
"postcss": "^8.4.23",
"postcss-preset-mantine": "1.6.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^2.8.8",
"storybook": "^7.0.18",
"storybook-dark-mode": "^3.0.0",
"typescript": "5.0.4"
}
}