-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.06 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
75
76
77
78
79
80
{
"name": "todos",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.4",
"@hookform/resolvers": "^2.9.1",
"@mantine/carousel": "^5.9.4",
"@mantine/core": "^5.5.5",
"@mantine/hooks": "^5.5.5",
"@mantine/modals": "^5.5.5",
"@mantine/next": "^5.5.5",
"@mantine/notifications": "^5.9.5",
"@tabler/icons": "^1.117.0",
"@tailwindcss/line-clamp": "^0.4.2",
"classnames": "^2.3.1",
"clsx": "^1.2.1",
"embla-carousel-react": "^7.0.5",
"next": "^14.2.32",
"react": "18.2",
"react-cookie": "^8.0.1",
"react-dom": "18.2",
"react-hook-form": "^7.40.0",
"uuid": "^9.0.0",
"yup": "^0.32.11",
"zustand": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@types/node": "^17.0.42",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"prettier": "^2.6.2",
"sass": "^1.52.3",
"stylelint": "^14.9.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^4.0.0",
"tailwindcss": "^3.1.6",
"typescript": "4.7.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}