-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
157 lines (157 loc) · 5.28 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "kitsu-web",
"version": "4.0.0",
"files": [
"dist"
],
"module": "./dist/kitsu-v4.es.js",
"exports": {
".": {
"import": "./dist/kitsu-v4.es.js"
}
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"browserslist": [
"defaults",
"not ie <= 11",
"not op_mini all"
],
"scripts": {
"start": "npm run dev",
"dev": "run-p dev:*",
"dev:vite": "BUILD_TARGET=client vite --host --strictPort --port 5173",
"dev:storybook": "BUILD_TARGET=client storybook dev -p 6006",
"build": "run-p build:*",
"build:client": "BUILD_TARGET=client vite build",
"build:server": "BUILD_TARGET=server vite build",
"build:library": "BUILD_TARGET=library vite build",
"build:storybook": "BUILD_TARGET=client storybook build --output-dir ./dist/client/docs/ui/",
"test": "run-p test:*",
"test:unit": "BUILD_TARGET=client vitest run --coverage",
"test:unit:watch": "BUILD_TARGET=client vitest watch",
"test:e2e": "cypress",
"codegen": "run-p codegen:*",
"codegen:intl": "tsx ./bin/extract-intl.mts",
"codegen:css-globals": "tsx ./bin/extract-css-globals.mts",
"codegen:graphql-schema": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@nanoauth/base": "^0.3.0",
"@nanoauth/myanimelist": "^0.2.3",
"@popperjs/core": "^2.11.8",
"@radix-ui/react-accessible-icon": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.4",
"@react-hookz/web": "^25.0.1",
"@sentry/react": "^8.47.0",
"@urql/devtools": "^2.0.3",
"@urql/exchange-auth": "^2.2.0",
"@urql/exchange-graphcache": "^7.2.1",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"blurhash": "^2.0.5",
"date-fns": "^4.1.0",
"gql.tada": "^1.8.10",
"graphql": "^16.10.0",
"graphql-scalars": "^1.24.0",
"lodash-es": "^4.17.21",
"preferred-locale": "^1.0.10",
"react": "^19.0.0",
"react-blurhash": "^0.3.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-intl": "^6.8.9",
"react-popper": "^2.3.0",
"react-router-dom": "^6.28.1",
"react-use": "^17.6.0",
"tiny-invariant": "^1.3.3",
"urql": "^4.2.1",
"yup": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@csstools/postcss-extract": "^3.0.1",
"@csstools/postcss-global-data": "^2.1.1",
"@eslint/js": "^9.17.0",
"@etchteam/storybook-addon-status": "^4.2.4",
"@formatjs/cli-lib": "^6.6.6",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/urql-introspection": "^3.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@kitsu-io-forks/storybook-addon-themes": "^7.1.0",
"@small-tech/vite-plugin-sri": "small-tech/vite-plugin-sri#main",
"@storybook/addon-a11y": "^7.6.20",
"@storybook/addon-actions": "^7.6.20",
"@storybook/addon-docs": "^7.6.20",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-links": "^7.6.20",
"@storybook/addons": "^7.6.20",
"@storybook/react": "^7.6.20",
"@storybook/react-vite": "^7.6.20",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/json-stable-stringify": "^1.0.36",
"@types/lodash-es": "^4.17.6",
"@types/node": "~22",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.21",
"autoprefixer": "^10.4.20",
"cypress": "^13.17.0",
"dotenv": "^16.4.7",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-i18next": "^6.1.1",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-testing-library": "^7.1.1",
"fast-glob": "^3.3.2",
"fetch-mock": "npm:@gr2m/[email protected]",
"globals": "^15.14.0",
"happy-dom": "^15.10.2",
"identity-obj-proxy": "^3.0.0",
"json-stable-stringify": "^1.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-color-mod-function": "npm:@alexlafroscia/postcss-color-mod-function@^4.0.0",
"postcss-custom-media": "^8.0.2",
"postcss-custom-properties": "^12.1.11",
"postcss-easings": "^4.0.0",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.1.5",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.6.0",
"prettier": "^3.4.2",
"rollup-plugin-formatjs": "^3.0.0",
"sharp": "^0.33.5",
"storybook": "^7.6.20",
"storybook-addon-designs": "^7.0.0-beta.2",
"storybook-rtl-addon": "^0.3.3",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-declaration-strict-value": "^1.10.6",
"stylelint-use-logical": "^2.1.2",
"tsx": "^4.19.2",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.6",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.8"
}
}