Skip to content

Commit f26fa23

Browse files
committed
init project
0 parents  commit f26fa23

File tree

14 files changed

+8301
-0
lines changed

14 files changed

+8301
-0
lines changed

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": [["@babel/preset-env", { "targets": { "node": "current" } }]]
3+
}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/node_modules/
2+
/public/build/
3+
4+
.DS_Store
5+
.vscode

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Code Challenge
2+
3+
# Start
4+
5+
```bash
6+
npm install
7+
npm run dev
8+
```
9+
10+
# Test
11+
12+
```bash
13+
npm run test
14+
```
15+
16+
# Lint
17+
18+
```bash
19+
npm run lint
20+
```

0 commit comments

Comments
 (0)