forked from mantinedev/ui.mantine.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.23 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
{
"name": "mantine-ui",
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "rm -rf out",
"clean:cache": "rm -rf .next",
"copy:cname": "cp -R ./CNAME ./out/CNAME",
"dev": "next dev -p 7522",
"build": "next build && next export && npm run copy:cname",
"deploy": "npm run clean && gh-pages -d out",
"analyze": "ANALYZE=true next build",
"test": "npm run lint && npm run typecheck",
"lint": "next lint",
"start": "next start -p 9522",
"typecheck": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"plop": "esno scripts/plop"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@mantine/carousel": "5.4.0",
"@mantine/core": "5.4.0",
"@mantine/dates": "5.4.0",
"@mantine/dropzone": "5.4.0",
"@mantine/ds": "5.4.0",
"@mantine/form": "5.4.0",
"@mantine/hooks": "5.4.0",
"@mantine/next": "5.4.0",
"@mantine/prism": "5.4.0",
"@mantine/spotlight": "5.4.0",
"@tabler/icons": "^1.71.0",
"dayjs": "^1.11.3",
"embla-carousel-react": "^7.0.3",
"next": "12.1.5",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^18.2.0",
"storybook-dark-mode": "^1.1.0",
"stylis": "^4.1.1",
"stylis-plugin-rtl": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@next/bundle-analyzer": "^12.1.5",
"@next/eslint-plugin-next": "^12.1.5",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/react": "^6.5.9",
"@types/react": "^17.0.39",
"@types/react-beautiful-dnd": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-loader": "^8.2.3",
"eslint": "^8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-mantine": "2.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"esno": "^0.14.1",
"gh-pages": "^4.0.0",
"typescript": "4.6.4"
}
}