-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (54 loc) · 1.38 KB
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
{
"name": "vite",
"private": false,
"version": "0.0.0",
"description": "Template for Vite + React + TS + linters (ESLint, Prettier, Stylelint)",
"type": "module",
"license": "MIT",
"author": "Jhoan5",
"homepage": "https://github.com/Jhoan5/",
"main": "src/main.tsx",
"keywords": [
"Template",
"TypeScript",
"React",
"React Router",
"ESLint",
"Vite",
"Stylelint",
"Prettier",
"EditorConfig"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint:ts": "eslint . --fix",
"lint:css": "stylelint '**/*.css' --fix",
"preview": "vite preview"
},
"dependencies": {
"github-markdown-css": "^5.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.26.0",
"vite-plugin-markdown": "^2.2.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^9.8.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"typescript": "^5.5.3",
"vite": "^5.4.0"
}
}