generated from mantinedev/next-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.58 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
{
"name": "mantine-next-template",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@ant-design/pro-components": "^2.6.35",
"@ant-design/pro-layout": "^7.17.13",
"@mantine/carousel": "^7.1.7",
"@mantine/core": "7.1.7",
"@mantine/form": "^7.1.7",
"@mantine/hooks": "7.1.7",
"@next/bundle-analyzer": "^13.5.3",
"@swc-jotai/react-refresh": "^0.1.0",
"@tabler/icons-react": "^2.20.0",
"@vercel/analytics": "^1.1.1",
"antd": "^5.10.3",
"embla-carousel-react": "^8.0.0-rc14",
"jotai": "^2.5.0",
"next": "13.5.3",
"next-auth": "^4.24.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@next/eslint-plugin-next": "^13.5.3",
"@storybook/addon-essentials": "^7.4.3",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.4.3",
"@storybook/nextjs": "^7.4.3",
"@storybook/react": "^7.4.3",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@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-jest": "^27.2.1",
"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",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.23",
"postcss-preset-mantine": "1.9.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^2.8.8",
"storybook": "^7.4.3",
"storybook-dark-mode": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "5.2.2"
}
}