-
-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.29 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.29 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
{
"name": "operationcode",
"license": "MIT",
"version": "2.0.15",
"scripts": {
"build": "next build",
"build:analyze": "cross-env ANALYZE=true next build",
"chromatic": "chromatic --exit-zero-on-changes skip",
"dev": "next -p 3000",
"format": "prettier --write \"**/*\"",
"format:md": "prettier --write \"**/*.md\"",
"lint": "pnpm lint:scripts && pnpm format:md",
"lint:ci": "eslint src",
"lint:scripts": "eslint --fix src",
"postbuild": "next-sitemap",
"prepare": "husky",
"start": "next start -p 3000",
"storybook": "storybook dev -p 9001 -c src/.storybook",
"storybook:build": "storybook build -c src/.storybook -o .storybook-dist",
"test:e2e": "export LOCAL_PLAYWRIGHT=true && playwright test --headed",
"test:e2e:debug": "pnpm test:e2e --debug",
"test:e2e:dev": "export LOCAL_PLAYWRIGHT=true && playwright test --ui",
"test:e2e:headless": "playwright test",
"test:e2e:headless:agent": "PLAYWRIGHT_HTML_OPEN=never && playwright test",
"test:e2e:update-snaps": "playwright test --update-snapshots",
"test": "vitest --run",
"test:ci": "pnpm test --coverage --silent",
"test:changes": "pnpm test --changed main",
"test:changes:watch": "pnpm test:changes --watch",
"test:update-snaps": "pnpm test -u",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"vitest": "cross-env vitest --config ./vitest.config.mts"
},
"dependencies": {
"@next/bundle-analyzer": "^16.2.1",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-tabs": "1.1.13",
"@sentry/nextjs": "^10.45.0",
"@types/airtable": "^0.10.5",
"airtable": "^0.12.2",
"axios": "^1.12.2",
"cva": "^1.0.0-beta.4",
"fast-xml-parser": "^3.21.1",
"fingerprintjs2": "^2.1.4",
"fontfaceobserver": "^2.3.0",
"formik": "^2.4.6",
"lodash": "^4.17.21",
"logrocket": "^10.1.0",
"logrocket-react": "^6.0.3",
"next": "^16.2.1",
"next-sitemap": "^4.2.3",
"object-hash": "^3.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-player": "^2.16.0",
"react-select": "^5.10.2",
"tailwind-merge": "^3.3.1",
"yup": "^1.7.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@faker-js/faker": "^10.3.0",
"@next/eslint-plugin-next": "^16.2.1",
"@playwright/test": "^1.56.1",
"@storybook/addon-docs": "^10.3.1",
"@storybook/nextjs": "^10.3.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/fingerprintjs2": "2",
"@types/fontfaceobserver": "^2.1.3",
"@types/lodash": "^4.17.24",
"@types/logrocket-react": "^3.0.3",
"@types/node": "^24.9.1",
"@types/object-hash": "^3.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^3.1.2",
"@vitest/eslint-plugin": "^1.6.13",
"@vitest/ui": "^3.1.2",
"axios-mock-adapter": "^2.1.0",
"chromatic": "^15.3.0",
"cross-env": "^7.0.3",
"dotenv": "^17.2.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-better-tailwindcss": "^4.3.2",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-no-barrel-files": "^1.2.2",
"eslint-plugin-playwright": "^2.10.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^10.3.2",
"eslint-plugin-unicorn": "^63.0.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "13.0.3",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.3.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite-plugin-magical-svg": "^1.9.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.1.2",
"webpack": "^5.102.1"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
}
}