-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.53 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
{
"name": "pet-care",
"version": "0.1.0",
"description": "App for pet's health care",
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "next lint && pnpm lint:stylelint",
"lint:stylelint": "stylelint **/*.css --cache",
"lint:fix": "next lint --fix",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"check": "pnpm prettier:check && pnpm lint && pnpm typecheck",
"test": "pnpm check && pnpm jest"
},
"dependencies": {
"@mantine/carousel": "^7.10.1",
"@mantine/charts": "^7.10.1",
"@mantine/core": "^7.10.1",
"@mantine/dates": "^7.10.1",
"@mantine/form": "^7.10.1",
"@mantine/hooks": "^7.10.1",
"@mantine/modals": "^7.10.1",
"@mantine/notifications": "^7.10.1",
"@next/bundle-analyzer": "^14.2.3",
"@tabler/icons-react": "^3.5.0",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.11",
"dayjs": "^1.11.11",
"embla-carousel-react": "8.1.3",
"eslint-plugin-autofix": "^2.0.0",
"firebase": "^10.12.2",
"lottie-react": "^2.4.0",
"next": "14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"recharts": "2"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@next/eslint-plugin-next": "^14.1.4",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.3",
"@types/react": "18.2.74",
"@types/testing-library__jest-dom": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-mantine": "3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"jest": "^29.7.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"stylelint": "^16.3.1",
"stylelint-config-standard-scss": "^13.1.0",
"ts-jest": "^29.1.2",
"typescript": "5.4.3"
}
}