-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
{
"name": "movieplex",
"private": false,
"type": "module",
"author": {
"name": "Rahul Kumar",
"email": "rahulkumar109422@gmail.com",
"url": "https://rahulbaran.vercel.app"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint:js": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:css": "stylelint src/**/**/*.{css,scss}",
"lint-fix:js": "eslint --fix src --ext js,jsx",
"lint-fix:css": "stylelint --fix src/**/**/*.{css,scss}",
"format-code": "prettier . --write"
},
"prettier": {
"arrowParens": "avoid",
"useTabs": false,
"singleQuote": false,
"jsxSingleQuote": false,
"trailingComma": "none",
"semi": true,
"endOfLine": "auto"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.25%",
"not dead",
"not op_mini all",
"not IE 11"
]
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"react-router-dom": "^6.11.2",
"swiper": "^9.4.0"
},
"devDependencies": {
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-legacy": "^4.0.4",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"postcss-preset-env": "^8.4.2",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"stylelint": "^15.6.3",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"terser": "^5.17.7",
"vite": "^4.3.9",
"vite-plugin-pwa": "^0.16.4"
}
}