Skip to content

Commit eddb4c9

Browse files
committed
add 03-boilerplate
1 parent 00fb61a commit eddb4c9

52 files changed

Lines changed: 859 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
node_modules
2+
dist
3+
coverage
4+
.awcache
5+
test-report.*
6+
junit.xml
7+
*.log
8+
*.orig
9+
.cache
10+
.env
11+
.next
12+
.swc
13+
!.vscode
14+
.tanstack
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"endOfLine": "lf"
5+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"files.watcherExclude": {
3+
"**/routeTree.gen.ts": true
4+
},
5+
"search.exclude": {
6+
"**/routeTree.gen.ts": true
7+
},
8+
"files.readonlyInclude": {
9+
"**/routeTree.gen.ts": true
10+
}
11+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "car-api",
3+
"version": "1.0.0",
4+
"description": "Car API",
5+
"type": "module",
6+
"scripts": {
7+
"mock-server": "tsx watch src/index.ts"
8+
},
9+
"author": "Lemoncode",
10+
"license": "MIT",
11+
"dependencies": {
12+
"@hono/node-server": "^1.19.7",
13+
"hono": "^4.11.0"
14+
},
15+
"devDependencies": {
16+
"tsx": "^4.21.0"
17+
}
18+
}
17.2 KB
Loading
22.5 KB
Loading
17.1 KB
Loading
22.8 KB
Loading
27.8 KB
Loading
26.9 KB
Loading

0 commit comments

Comments
 (0)