-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.21 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.21 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "frolog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --check '**/*.{js,jsx,ts,tsx}'",
"test": "jest --passWithNoTests --silent",
"test:watch": "jest --watchAll --passWithNoTests",
"coverage": "jest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_3d4fe0209f30bbd",
"prepare": "husky"
},
"dependencies": {
"@frolog/frolog-api": "^1.4.0",
"@sentry/nextjs": "^8.35.0",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query": "^5.40.1",
"@types/react-beautiful-dnd": "^13.1.8",
"axios": "^1.7.2",
"cookies-next": "^4.2.1",
"framer-motion": "^11.11.15",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"next": "13.5.6",
"next-auth": "^4.24.7",
"next-pwa": "^5.6.0",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.53.2",
"react-lottie-player": "^2.0.0",
"react-markdown": "^9.0.1",
"react-slick": "^0.30.2",
"sharp": "^0.33.5",
"zustand": "^4.5.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.3",
"@microsoft/tsdoc": "^0.15.1",
"@sentry/types": "^8.38.0",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-jest": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/blocks": "^8.4.7",
"@storybook/nextjs": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/test": "^8.4.7",
"@tailwindcss/typography": "^0.5.13",
"@team-frolog/eslint-config-web": "^1.0.4",
"@team-frolog/prettier-config-web": "^0.0.1",
"@team-frolog/tailwind-config": "^0.0.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@tomfreudenberg/next-auth-mock": "^0.5.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/parser": "^7.14.1",
"autoprefixer": "^10",
"chromatic": "^11.20.2",
"eslint": "^8.57.0",
"eslint-plugin-storybook": "^0.11.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.3.0",
"msw": "^2.7.0",
"msw-storybook-addon": "^2.0.4",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"slick-carousel": "^1.8.1",
"storybook": "^8.4.7",
"tailwindcss": "^3",
"ts-jest": "^29.2.5",
"typescript": "^5"
},
"prettier": "@team-frolog/prettier-config-web",
"msw": {
"workerDirectory": [
"public"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}