Skip to content

Commit 9811228

Browse files
Initial commit
0 parents  commit 9811228

File tree

14 files changed

+29432
-0
lines changed

14 files changed

+29432
-0
lines changed

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# misc
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
23+
.idea
24+
.env
25+
junit.xml
26+
unit.xml

.jshintrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"node": true,
3+
"browser": true,
4+
"esnext": true
5+
}

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# React Starter
2+
3+
## Environment
4+
5+
- React Version: 18.2.0
6+
- Node Version: 18(LTS)
7+
- Default Port: 8000
8+
9+
## [Change]: Project Specifications
10+
11+
```text
12+
Note: Add your project specific Read only files below.
13+
```
14+
15+
**Read Only Files**
16+
17+
- `src/App.test.js`
18+
19+
**Commands**
20+
21+
- run:
22+
23+
```bash
24+
npm start
25+
```
26+
27+
- install:
28+
29+
```bash
30+
npm install
31+
```
32+
33+
- test:
34+
35+
```bash
36+
npm test
37+
```

hackerrank.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 1.0
2+
configuration:
3+
has_webserver: true
4+
scoring:
5+
command: "npm test"
6+
files:
7+
- junit.xml
8+
readonly_paths:
9+
- src/App.test.js
10+
ide_config:
11+
default_open_files:
12+
- src/App.js
13+
project_menu:
14+
run: npm start
15+
install: npm install
16+
test: npm test

0 commit comments

Comments
 (0)