-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.48 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
{
"name": "omdb-client",
"private": true,
"version": "1.0.0",
"description": "Catalog of movies, series and games",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "concurrently -g 'npm run lint:es' 'npm run lint:style'",
"lint:fix": "concurrently -g 'npm run lint:es:fix' 'npm run lint:style:fix'",
"lint:es": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:es:fix": "npm run lint:es -- --fix",
"lint:style": "stylelint src/**/*.scss",
"lint:style:fix": "npm run lint:style -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lykoffant/omdb-client.git"
},
"keywords": [
"omdb-client",
"pet-project",
"single-page-app",
"react",
"react-router-dom",
"redux",
"material-ui"
],
"author": "Anton Lykov",
"license": "MIT",
"bugs": {
"url": "https://github.com/lykoffant/omdb-client/issues"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.6",
"@reduxjs/toolkit": "^1.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.7.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-react-swc": "^3.0.0",
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"stylelint": "^14.16.1",
"stylelint-config-clean-order": "^2.3.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-prettier": "^2.0.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-stylelint": "^4.1.6",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.5"
}
}