-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.71 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.71 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "next-enterprise",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "cross-env FORCE_COLOR=1 next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"analyze": "cross-env ANALYZE=true pnpm run build",
"storybook": "cross-env FORCE_COLOR=1 storybook dev -p 6006",
"test-storybook": "cross-env FORCE_COLOR=1 test-storybook",
"build-storybook": "cross-env FORCE_COLOR=1 storybook build",
"test": "cross-env FORCE_COLOR=1 vitest",
"test:watch": "cross-env FORCE_COLOR=1 vitest --watch",
"test:ui": "cross-env FORCE_COLOR=1 vitest --ui",
"test:coverage": "cross-env FORCE_COLOR=1 vitest --coverage",
"e2e:headless": "playwright test",
"e2e:ui": "playwright test --ui",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"postinstall": "npx patch-package -y",
"coupling-graph": "npx madge --extensions js,jsx,ts,tsx,css,md,mdx ./ --exclude '.next|tailwind.config.js|reset.d.ts|prettier.config.js|postcss.config.js|playwright.config.ts|next.config.js|next-env.d.ts|instrumentation.ts|e2e/|README.md|.storybook/|.eslintrc.js' --image graph.svg"
},
"dependencies": {
"@next/bundle-analyzer": "^15.3.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-popover": "^1.1.13",
"@radix-ui/react-radio-group": "^1.3.6",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-slider": "^1.3.4",
"@radix-ui/react-switch": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.11",
"@radix-ui/react-toggle-group": "^1.1.9",
"@radix-ui/react-tooltip": "^1.2.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"@t3-oss/env-nextjs": "^0.10.1",
"@vercel/otel": "^1.12.0",
"class-variance-authority": "^0.7.0",
"lodash": "^4.17.21",
"next": "15.3.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/plugin-syntax-flow": "^7.27.1",
"@babel/plugin-transform-optional-chaining": "^7.27.1",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@eslint/eslintrc": "^3.3.1",
"@next/eslint-plugin-next": "15.1.6",
"@opentelemetry/api": "1.7.0",
"@opentelemetry/resources": "1.18.1",
"@opentelemetry/sdk-node": "0.45.1",
"@opentelemetry/sdk-trace-node": "1.18.1",
"@opentelemetry/semantic-conventions": "1.18.1",
"@playwright/test": "^1.52.0",
"@storybook/addon-controls": "^8.6.12",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/nextjs": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/test-runner": "^0.21.3",
"@tailwindcss/postcss": "^4.1.5",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.3.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.17.43",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/ui": "^3.2.4",
"all-contributors-cli": "^6.26.1",
"cross-env": "^7.0.3",
"eslint": "^9.26.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-storybook": "^0.11.6",
"eslint-plugin-tailwindcss": "^3.18.0",
"fetch-mock": "^9.11.0",
"gzip-size": "6.0.0",
"jsdom": "^26.1.0",
"mkdirp": "^3.0.1",
"patch-package": "^8.0.0",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"semantic-release": "^22.0.12",
"storybook": "^8.6.12",
"tailwindcss": "^4.1.5",
"tsc": "^2.0.4",
"typed-query-selector": "^2.12.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"webpack": "5.94.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.0.0"
}