Skip to content

Commit

Permalink
new build
Browse files Browse the repository at this point in the history
  • Loading branch information
wellsousaaa committed Jan 12, 2022
1 parent e37ab2d commit e15f066
Show file tree
Hide file tree
Showing 143 changed files with 14,084 additions and 568 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
![Five Nights at Freddy's](https://vignette.wikia.nocookie.net/freddy-fazbears-pizza/images/0/0c/Show_stage_nocamera.png/revision/latest?cb=20150119023526)

# ~ Five Nights at Freddy's Web

A web version I've made of the popular horror game [Five Nights at Freddy's](fnafar.com/).
⚛️ It was made using popular technologies like [ReactJS](https://pt-br.reactjs.org/) and [Redux](https://redux.js.org/).

Uma versão na Web que eu fiz do famoso jogo de terror [Five Nights at Freddy's](fnafar.com/).
⚛️ Foi feito usando tecnologias populares como [ReactJS](https://pt-br.reactjs.org/) e [Redux](https://redux.js.org/).

## VERSION 3.0 ⭐
- Added custom night!

~ Link: [https://five-nights-at-freddys-web.herokuapp.com/](https://five-nights-at-freddys-web.herokuapp.com/)

![Five Nights at Freddy's](https://wendelldesousa.netlify.app/assets/FNAF.webp)

## Installation

First you need to clone this repository

```
git clone https://github.com/wellsousaaa/Five-Nights-at-Freddys-Web.git
```

Then start it using npm or yarn

```
npm install
```

Then start localhost

```
npm start
```

## Credits

This project was made by Wendell Sousa :D
103 changes: 0 additions & 103 deletions asset-manifest.json

This file was deleted.

1 change: 0 additions & 1 deletion index.html

This file was deleted.

41 changes: 41 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "fnaf",
"version": "0.1.0",
"private": true,
"homepage": "http://wellsousaaa.github.io/five-nights-at-freddys",
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"gh-pages": "^3.2.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-image-mapper": "^0.0.15",
"react-redux": "^7.2.2",
"react-scripts": "3.4.1",
"redux": "^4.0.5"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Loading

0 comments on commit e15f066

Please sign in to comment.