This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
{
"name": "viterjs-template",
"version": "1.1.7",
"description": "React + Vite + Redux + MuI + axios + RRD + Prettier => Boilerplate",
"license": "MIT",
"author": "emrecil <[email protected]>",
"keywords": [
"react",
"boilerplate",
"javaScript",
"starter",
"vite",
"redux",
"material-ui",
"axios",
"rrd",
"prettier"
],
"repository": {
"type": "git",
"url": "https://github.com/emre-cil/viterjs-template.git"
},
"bugs": {
"url": "https://github.com/emre-cil/viterjs-template/issues"
},
"homepage": "https://github.com/emre-cil/viterjs-template#readme",
"scripts": {
"dev": "vite --open",
"start": "vite --open",
"host": "vite --open --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss}\" --write",
"format+lint": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss}\" --write && eslint src --ext .js,.jsx,.ts,.tsx --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cover": "vitest run --coverage"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.3",
"@mui/material": "^6.1.3",
"@reduxjs/toolkit": "^2.2.8",
"axios": "^1.7.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"eslint": "^9.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.3.3",
"vite": "^5.4.8",
"vitest": "^2.1.2"
}
}