-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.59 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
{
"name": "theopenmoviedatabasereactexample",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "yarn es-validate && vite build",
"ts-validate": "tsc",
"lint": "yarn run eslint ./src/** --ext ts,tsx --fix",
"prettier": "prettier --write ./src",
"validate": "yarn run ts-validate && yarn run prettier && yarn run lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@headlessui/react": "^1.7.16",
"@storybook/addon-a11y": "^7.4.2",
"@tanstack/react-virtual": "^3.0.0-beta.54",
"@tippyjs/react": "^4.2.6",
"@typescript-eslint/typescript-estree": "^5.61.0",
"classnames": "^2.3.1",
"date-fns": "^2.29.3",
"font-awesome": "^4.7.0",
"formik": "^2.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-popper": "^2.3.0",
"react-router-dom": "^6.15.0",
"react-virtual": "^2.10.4",
"sass": "^1.65.1",
"tailwindcss": "^3.3.2",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
"@storybook/addon-essentials": "7.4.2",
"@storybook/addon-interactions": "7.4.2",
"@storybook/addon-links": "7.4.2",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "7.4.2",
"@storybook/react": "7.4.2",
"@storybook/react-vite": "7.4.2",
"@storybook/testing-library": "^0.2.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.2",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-tailwindcss": "^3.12.1",
"husky": "^8.0.0",
"postcss": "^8.4.27",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"storybook": "7.4.2",
"typescript": "^5.0.2",
"vite": "^4.4.9",
"vitest": "^0.33.0"
},
"bugs": {
"url": "https://github.com/AlexMachin1997/TheOpenMovieDB-React-Example/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexMachin1997/TheOpenMovieDB-React-Example.git"
}
}