Skip to content

Commit 038bbbb

Browse files
committed
:init: project create
0 parents  commit 038bbbb

33 files changed

+2184
-0
lines changed

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
coverage
15+
*.local
16+
17+
/cypress/videos/
18+
/cypress/screenshots/
19+
20+
# Editor directories and files
21+
.vscode/*
22+
!.vscode/extensions.json
23+
.idea
24+
*.suo
25+
*.ntvs*
26+
*.njsproj
27+
*.sln
28+
*.sw?

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shamefully-hoist = true

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
3+
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Power And Convenient Template
2+
// Todo: Test AJAX Request、Write Readme File、Test Store、Format code、Push to Github、Vite dev environment and product enviroment、Vite Cros

env.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/// <reference types="vite/client" />
2+
/// <reference types="vite-plugin-pages/client" />

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<link rel="icon" href="/bollo.png">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Bollo Lite</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.ts"></script>
12+
</body>
13+
</html>

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "bollo-lite",
3+
"version": "0.0.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "vite",
7+
"build": "run-p type-check build-only",
8+
"preview": "vite preview",
9+
"build-only": "vite build",
10+
"type-check": "vue-tsc --noEmit"
11+
},
12+
"dependencies": {
13+
"@csstools/normalize.css": "^12.0.0",
14+
"axios": "^1.2.2",
15+
"pinia": "^2.0.32",
16+
"vue": "^3.2.47",
17+
"vue-router": "^4.1.6"
18+
},
19+
"devDependencies": {
20+
"@iconify/vue": "^4.1.0",
21+
"@types/node": "^18.14.2",
22+
"@vitejs/plugin-vue": "^4.0.0",
23+
"@vue/tsconfig": "^0.1.3",
24+
"npm-run-all": "^4.1.5",
25+
"typescript": "~4.8.4",
26+
"vite": "^4.1.4",
27+
"vite-plugin-pages": "^0.28.0",
28+
"vite-plugin-windicss": "^1.8.10",
29+
"vue-tsc": "^1.2.0",
30+
"windicss": "^3.5.6"
31+
}
32+
}

0 commit comments

Comments
 (0)