-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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": "hello-react",
"version": "1.0.0",
"description": "A playful React greeting app for learning state management, hooks, and TypeScript. Type any name or shuffle for quirky surprises.",
"private": true,
"type": "module",
"author": "The Hello World Writer (https://www.thehelloworldwriter.com/)",
"license": "MIT",
"homepage": "https://reacting.thehww.app/hello-react/",
"repository": {
"type": "git",
"url": "https://github.com/TheHelloWorldWriter/reacting.git",
"directory": "hello-react"
},
"bugs": {
"url": "https://github.com/TheHelloWorldWriter/reacting/issues"
},
"keywords": [
"react",
"typescript",
"vite",
"tailwindcss",
"learning-project"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"react-dom": "^19.2.3",
"react": "^19.2.3",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"@types/react-dom": "^19.2.3",
"@types/react": "^19.2.7",
"@vitejs/plugin-react": "^5.1.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"typescript-eslint": "^8.50.1",
"typescript": "~5.9.3",
"vite": "8.0.0-beta.5"
},
"overrides": {
"vite": "8.0.0-beta.5"
}
}