Skip to content

Commit e2b4cec

Browse files
committedJun 17, 2024
init
0 parents  commit e2b4cec

11 files changed

+3674
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

‎index.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<meta name="theme-color" content="#000000" />
7+
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico" />
8+
<title>Solid App</title>
9+
10+
<link rel="stylesheet" href="https://unpkg.com/open-props" />
11+
<link
12+
rel="stylesheet"
13+
href="https://unpkg.com/open-props/normalize.min.css"
14+
/>
15+
<link
16+
rel="stylesheet"
17+
href="https://unpkg.com/open-props/buttons.min.css"
18+
/>
19+
</head>
20+
<body>
21+
<noscript>You need to enable JavaScript to run this app.</noscript>
22+
<div id="root"></div>
23+
24+
<script src="/src/index.tsx" type="module"></script>
25+
</body>
26+
</html>

‎package.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "vite-template-solid",
3+
"version": "0.0.0",
4+
"description": "",
5+
"type": "module",
6+
"scripts": {
7+
"start": "vite",
8+
"dev": "vite",
9+
"build": "vite build",
10+
"serve": "vite preview",
11+
"test": "vitest"
12+
},
13+
"license": "MIT",
14+
"devDependencies": {
15+
"@solidjs/testing-library": "^0.8.5",
16+
"@testing-library/jest-dom": "^6.2.0",
17+
"@types/testing-library__jest-dom": "^5.14.9",
18+
"jsdom": "^23.2.0",
19+
"solid-devtools": "^0.29.2",
20+
"typescript": "^5.3.3",
21+
"vite": "^5.0.11",
22+
"vite-plugin-solid": "^2.8.2",
23+
"vitest": "^1.2.1"
24+
},
25+
"dependencies": {
26+
"solid-js": "^1.8.11"
27+
}
28+
}

0 commit comments

Comments
 (0)
Please sign in to comment.