-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
149 lines (149 loc) · 4.99 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
{
"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",
"npm": ">=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",
"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": "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.2",
"@radix-ui/react-accessible-icon": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.2",
"@react-hookz/web": "^24.0.4",
"@sentry/react": "^6.17.2",
"@urql/devtools": "^2.0.3",
"@urql/exchange-auth": "^2.1.6",
"@urql/exchange-graphcache": "^6.3.3",
"blurhash": "^2.0.5",
"date-fns": "^2.28.0",
"graphql": "^16.8.1",
"graphql-scalars": "^1.14.1",
"lodash-es": "^4.17.21",
"preferred-locale": "^1.0.10",
"react": "^18.0.0",
"react-blurhash": "^0.3.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.43.5",
"react-icons": "^4.3.1",
"react-intl": "^6.6.5",
"react-popper": "^2.2.5",
"react-router-dom": "^6.16.0",
"react-use": "^17.3.2",
"tiny-invariant": "^1.3.1",
"urql": "^4.0.5",
"urql-custom-scalars-exchange": "^1.0.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@csstools/postcss-extract": "^3.0.1",
"@csstools/postcss-global-data": "^2.1.1",
"@etchteam/storybook-addon-status": "^4.2.4",
"@formatjs/cli-lib": "^6.1.3",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/near-operation-file-preset": "^2.5.0",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-urql": "^3.7.3",
"@ianvs/prettier-plugin-sort-imports": "^4.1.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.5.3",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-docs": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addons": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/json-stable-stringify": "^1.0.36",
"@types/lodash-es": "^4.17.5",
"@types/node": "~18",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.7.2",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.34.4",
"autoprefixer": "^10.4.13",
"cypress": "^13.4.0",
"dotenv": "^16.0.3",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"fast-glob": "^3.3.1",
"fetch-mock": "npm:@gr2m/fetch-mock@9.11.0-pull-request-644.1",
"happy-dom": "^14.7.1",
"identity-obj-proxy": "^3.0.0",
"json-stable-stringify": "^1.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"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.0.0",
"postcss-nesting": "^12.0.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.1.4",
"prettier": "^3.0.0",
"rollup-plugin-formatjs": "^3.0.0",
"sharp": "^0.32.6",
"storybook": "^7.5.3",
"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.9.2",
"stylelint-use-logical": "^2.1.0",
"tsx": "^4.7.0",
"type-fest": "^4.0.0",
"typescript": "^5.2.2",
"vite": "^4.5.3",
"vite-plugin-svgr": "^4.0.0",
"vitest": "^0.34.4"
}
}