-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.99 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react.js-vite-template-basic",
"description": "Basic template for React using Vite ",
"version": "0.1.0",
"private": true,
"type": "module",
"author": {
"name": "Nati Assefa",
"email": "natnael.w.assefa@gmail.com",
"url": "https://github.com/natiassefa"
},
"scripts": {
"dev": "vite",
"setup": "npx tsx scripts/setup-srcipt.ts",
"build": "tsc && vite build",
"build:ssg": "tsc && vite build && react-snap",
"serve": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --max-warnings=0",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"reactSnap": {
"source": "dist",
"minifyHtml": {
"collapseWhitespace": true,
"removeComments": true
},
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
],
"include": [
"/",
"/about",
"/contact",
"/privacy",
"/terms"
]
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.9.4",
"seord": "^0.0.5-patch.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^14.3.1",
"@types/node": "^20.19.17",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/ui": "^1.6.1",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-tailwindcss": "^3.18.2",
"happy-dom": "^15.11.7",
"postcss": "^8.5.6",
"prettier": "3.1.1",
"react-helmet-async": "^2.0.5",
"react-snap": "^1.23.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.2",
"vite": "^5.4.20",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.1"
}
}