zerostart-cli 0.0.13 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/managers/TemplateManager.js +0 -1
- package/package.json +1 -1
- package/test111/README.md +31 -0
- package/test111/index.html +13 -0
- package/test111/package.json +22 -0
- package/test111/roadmap.md +7 -0
- package/test111/tsconfig.node.json +11 -0
package/package.json
CHANGED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# test111
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
A Web App project in React
|
|
5
|
+
|
|
6
|
+
## Tech Stack
|
|
7
|
+
- Language: React
|
|
8
|
+
- Type: Web App
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
```bash
|
|
12
|
+
# Clone the repository
|
|
13
|
+
git clone <repo-url>
|
|
14
|
+
cd test111
|
|
15
|
+
|
|
16
|
+
# Install dependencies
|
|
17
|
+
npm install # or pip install -r requirements.txt / mvn install
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
```bash
|
|
22
|
+
npm start # or python main.py / java -jar target/app.jar
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Future Scope
|
|
26
|
+
- Add more features
|
|
27
|
+
- Improve UI/UX
|
|
28
|
+
- optimize performance
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
Project initialized by ZeroStart CLI
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
<!doctype html>
|
|
3
|
+
<html lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>test111</title>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="root"></div>
|
|
11
|
+
<script type="module" src="/src/main.tsx"></script>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "test111",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite",
|
|
8
|
+
"build": "tsc && vite build",
|
|
9
|
+
"preview": "vite preview"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"react": "^18.2.0",
|
|
13
|
+
"react-dom": "^18.2.0"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@types/react": "^18.2.43",
|
|
17
|
+
"@types/react-dom": "^18.2.17",
|
|
18
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
19
|
+
"typescript": "^5.2.2",
|
|
20
|
+
"vite": "^5.0.8"
|
|
21
|
+
}
|
|
22
|
+
}
|