Skip to content

Commit 02ef8fb

Browse files
author
John Letey
committed
feat: base
1 parent 819fe74 commit 02ef8fb

14 files changed

+29
-313
lines changed

.gitignore

+2-34
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,2 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
7-
8-
# testing
9-
/coverage
10-
11-
# next.js
12-
/.next/
13-
/out/
14-
15-
# production
16-
/build
17-
18-
# misc
19-
.DS_Store
20-
*.pem
21-
22-
# debug
23-
npm-debug.log*
24-
yarn-debug.log*
25-
yarn-error.log*
26-
27-
# local env files
28-
.env.local
29-
.env.development.local
30-
.env.test.local
31-
.env.production.local
32-
33-
# vercel
34-
.vercel
1+
.next
2+
node_modules

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.next

README.md

-34
This file was deleted.

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name": "verto",
3-
"version": "0.1.0",
42
"private": true,
3+
"name": "verto",
4+
"version": "0.0.0",
55
"scripts": {
66
"dev": "next dev",
7-
"build": "next build",
8-
"start": "next start"
7+
"fmt": "prettier --write ."
98
},
109
"dependencies": {
11-
"next": "10.1.3",
12-
"react": "17.0.2",
13-
"react-dom": "17.0.2"
10+
"next": "^10.1.3",
11+
"react": "^17.0.2",
12+
"react-dom": "^17.0.2"
1413
},
1514
"devDependencies": {
1615
"@types/react": "^17.0.3",
16+
"prettier": "^2.2.1",
1717
"typescript": "^4.2.3"
1818
}
1919
}

src/pages/_app.js

-7
This file was deleted.

src/pages/api/hello.js

-5
This file was deleted.

src/pages/index.js

-65
This file was deleted.

src/pages/index.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const Home = () => {
2+
return <></>;
3+
};
4+
5+
export default Home;

src/public/favicon.ico

-14.7 KB
Binary file not shown.

src/public/vercel.svg

-4
This file was deleted.

src/styles/Home.module.css

-122
This file was deleted.

src/styles/globals.css

-16
This file was deleted.

tsconfig.json

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"strict": false,
@@ -18,12 +14,6 @@
1814
"isolatedModules": true,
1915
"jsx": "preserve"
2016
},
21-
"include": [
22-
"next-env.d.ts",
23-
"**/*.ts",
24-
"**/*.tsx"
25-
],
26-
"exclude": [
27-
"node_modules"
28-
]
17+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
18+
"exclude": ["node_modules"]
2919
}

0 commit comments

Comments
 (0)