-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.65 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.65 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
{
"name": "typey-type",
"version": "0.1.0",
"private": true,
"homepage": "https://didoesdigital.com/typey-type",
"scripts": {
"start": "vite",
"dev": "vite",
"build:staging": "vite build --mode staging",
"build:production": "vite build --mode production",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:timing": "TIMING=1 eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:ci": "eslint --max-warnings=0 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"preview": "vite preview",
"test": "vitest",
"test:unit": "vitest run --tags-filter=!ui",
"test:ui": "vitest run --tags-filter=ui",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"vitest:ui": "vitest --ui",
"types": "pnpm exec tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "echo \"Chromatic is set up with a private token for use by Di. This script exists to stop Chromatic offering to add it for me.\""
},
"dependencies": {
"@sentry/react": "^10.48.0",
"@sentry/vite-plugin": "^4.9.1",
"clipboard": "^1.7.1",
"d3-array": "^3.1.1",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-time": "^3.0.0",
"d3-time-format": "^4.1.0",
"howler": "^2.2.3",
"jotai": "^2.19.0",
"motion": "^12.38.0",
"pure-react-carousel": "https://github.com/didoesdigital/pure-react-carousel.git#add-slider-callback",
"query-string": "^7.1.3",
"react": "^18.3.1",
"react-chatbot-kit": "^2.2.2",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-helmet": "^6.1.0",
"react-modal": "^3.14.4",
"react-router-dom": "^6.30.3",
"react-tooltip": "^5.28.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.1.1",
"@eslint/js": "^9.39.4",
"@storybook/addon-a11y": "10.3.5",
"@storybook/addon-docs": "10.3.5",
"@storybook/addon-links": "10.3.5",
"@storybook/react-vite": "10.3.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/clipboard": "1.5.36",
"@types/d3-array": "^3.0.3",
"@types/d3-format": "^3.0.1",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.2",
"@types/d3-shape": "^3.1.0",
"@types/d3-time": "^3.0.0",
"@types/d3-time-format": "^4.0.0",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/howler": "^2.2.7",
"@types/jsdom": "^27",
"@types/node": "^22.15.19",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "4.1.4",
"@vitest/eslint-plugin": "^1.6.13",
"@vitest/ui": "4.1.4",
"chromatic": "16.2.0",
"esbuild": "0.27.4",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "10.3.5",
"globals": "^17.3.0",
"jsdom": "^27.0.1",
"sass-embedded": "^1.99.0",
"storybook": "10.3.5",
"typescript": "5.8.3",
"typescript-eslint": "8.58.1",
"vite": "^8.0.8",
"vite-plugin-checker": "^0.11.0",
"vite-plugin-svgr": "^4.5.0",
"vitest": "4.1.4"
},
"engines": {
"node": ">=24.14.1"
},
"packageManager": "pnpm@10.33.0"
}