-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.7 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
81
82
83
84
85
86
87
88
89
{
"name": "polabo-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --no-lint",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"test": "jest --passWithNoTests",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage",
"mock:start": "json-server json-server/db.json --port 3001",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@jest/globals": "^29.7.0",
"@next/third-parties": "^15.1.0",
"@storybook/preview-api": "^8.1.11",
"@svgr/webpack": "^8.1.0",
"@types/uuid": "^10.0.0",
"browser-image-compression": "^2.0.2",
"eslint-import-resolver-typescript": "^3.6.1",
"next": "14.2.4",
"next-auth": "^5.0.0-beta.20",
"prettier-plugin-tailwindcss": "^0.6.5",
"puppeteer": "^23.10.4",
"react": "^18",
"react-device-detect": "^2.2.3",
"react-dom": "^18",
"react-moveable": "^0.56.0",
"react-multi-carousel": "^2.8.5",
"react-selecto": "^1.26.3",
"sharp": "^0.33.5",
"tailwind-merge": "^2.3.0",
"tailwind-scrollbar-hide": "^1.1.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.0",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-onboarding": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/nextjs": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/test": "^8.1.11",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"file-loader": "^6.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-server": "^1.0.0-beta.1",
"lint-staged": "^15.2.7",
"postcss": "^8",
"prettier": "^3.3.2",
"storybook": "^8.1.11",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}