-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 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
{
"name": "nextjs-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"swagger-typescript-api": "swagger-typescript-api -p https://dev-api.koddy.site/api-docs -o ./models -d -r --union-enums --add-readonly --extract-request-params --extract-request-body --extract-response-body --modular --axios",
"download:i18n": "node messages/scripts/download.mjs",
"upload:i18n": "node messages/scripts/upload.mjs"
},
"dependencies": {
"@tanstack/react-query": "^5.8.1",
"@tanstack/react-query-devtools": "^5.8.1",
"@use-gesture/react": "^10.3.0",
"axios": "^1.6.1",
"clsx": "^2.0.0",
"cookies-next": "^4.1.1",
"cva": "npm:class-variance-authority@^0.7.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"deepmerge": "^4.3.1",
"framer-motion": "^11.0.6",
"google-spreadsheet": "^4.1.1",
"keen-slider": "^6.8.6",
"msw": "^2.0.11",
"next": "13.5.6",
"next-intl": "^3.5.0",
"qs": "^6.11.2",
"react": "^18",
"react-calendar": "^4.8.0",
"react-dom": "^18",
"react-hook-form": "^7.48.2",
"react-spring-bottom-sheet": "^3.4.1",
"swagger-typescript-api": "^13.0.3",
"tailwind-merge": "^2.0.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.2",
"@storybook/nextjs": "^7.5.2",
"@storybook/react": "^7.5.2",
"@storybook/testing-library": "^0.2.2",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"autoprefixer": "^10.4.16",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tailwindcss": "^3.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw-storybook-addon": "^2.0.0-beta.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"storybook": "^7.5.2",
"tailwindcss": "^3.3.5",
"typescript": "^5"
},
"msw": {
"workerDirectory": "public"
}
}