-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.09 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
{
"name": "my-start-wars-app",
"private": true,
"version": "1.0.0",
"type": "module",
"repository": "https://github.com/KaiHotz/my-star-wars-app",
"homepage": "https://KaiHotz.github.io/my-star-wars-app",
"author": "Kai Hotz",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "yarn check-types && yarn eslint && yarn stylelint",
"lint:fix": "yarn eslint:fix && yarn stylelint:fix",
"eslint": "eslint . --report-unused-disable-directives --max-warnings 0",
"eslint:fix": "eslint . --fix",
"stylelint": "stylelint \"**/*.{css,scss,sass}\"",
"stylelint:fix": "stylelint \"**/*.{css,scss,sass}\" --fix",
"test": "vitest",
"ci": "yarn lint && yarn test --watch=false",
"check-types": "tsc --noEmit true",
"preview": "vite preview --port 8080",
"deploy": "gh-pages -d dist",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@formatjs/intl": "^2.10.4",
"@hookform/resolvers": "^3.9.0",
"@popperjs/core": "^2.11.8",
"@tanstack/react-query": "^5.56.2",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-intl": "^6.6.8",
"react-popper": "^2.3.0",
"react-router-dom": "^6.26.2",
"react-select": "^5.8.0",
"regenerator-runtime": "^0.14.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^2.0.2",
"@eslint/js": "^9.10.0",
"@storybook/addon-essentials": "^8.3.1",
"@storybook/addon-interactions": "^8.3.1",
"@storybook/addon-links": "^8.3.1",
"@storybook/addon-onboarding": "^8.3.1",
"@storybook/blocks": "^8.3.1",
"@storybook/react": "^8.3.1",
"@storybook/react-vite": "^8.3.1",
"@storybook/test": "^8.3.1",
"@tanstack/react-query-devtools": "^5.56.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.5",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-storybook": "^0.8.0",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"jsdom": "^25.0.0",
"postcss": "^8.4.47",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"sass": "^1.78.0",
"storybook": "^8.3.1",
"storybook-dark-mode": "^4.0.2",
"stylelint": "^16.9.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.6.0",
"typescript": "5.5.4",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.7",
"vitest": "^2.1.1"
},
"packageManager": "[email protected]"
}