-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
121 lines (121 loc) · 3.65 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
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
{
"name": "typey-type",
"version": "0.1.0",
"private": true,
"homepage": "https://didoesdigital.com/typey-type",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!d3-array)/\" --env=jsdom",
"test:unit": "yarn test --testMatch \"**/*.test.{js,ts}\"",
"test:ui": "yarn test --testMatch \"**/*.test.{jsx,tsx}\"",
"eject": "react-scripts eject",
"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.\""
},
"resolutions": {
"loader-utils": "^2.0.1"
},
"dependencies": {
"@sentry/browser": "^6.17.9",
"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.8.0",
"npm-run-all": "^4.1.1",
"pure-react-carousel": "https://github.com/didoesdigital/pure-react-carousel.git#add-slider-callback",
"query-string": "^6.2.0",
"react": "^17.0.2",
"react-animate-height": "^2.0.5",
"react-chatbot-kit": "^2.0.1",
"react-document-title": "^2.0.3",
"react-dom": "^17.0.2",
"react-ga4": "^2.1.0",
"react-loadable": "^5.5.0",
"react-modal": "^3.14.4",
"react-numeric-input": "^2.2.0",
"react-router-dom": "5.1.2",
"react-tooltip": "^5.28.0",
"react-transition-group": "^2.4.0",
"sass": "^1.49.8",
"typescript": "^4.7.4",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@sentry/cli": "^1.72.2",
"@storybook/addon-a11y": "^7.5.1",
"@storybook/addon-actions": "^7.5.1",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/jest": "^0.2.3",
"@storybook/node-logger": "^7.5.1",
"@storybook/preset-create-react-app": "^7.5.1",
"@storybook/react": "^7.5.1",
"@storybook/react-webpack5": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.5",
"@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-format": "^4.0.0",
"@types/howler": "^2.2.7",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/react": "16.8.6",
"@types/react-document-title": "^2.0.5",
"@types/react-dom": "^16.8.5",
"@types/react-loadable": "^5.5.6",
"@types/react-modal": "^3.13.1",
"@types/react-numeric-input": "^2.2.4",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.5",
"chromatic": "^10.9.6",
"eslint-plugin-storybook": "^0.6.15",
"jest-mock-random": "^1.1.1",
"react-scripts": "5.0.1",
"storybook": "^7.5.1",
"webpack": "5",
"why-did-you-update": "^0.1.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=18.8.0"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"packageManager": "[email protected]"
}