Skip to content

Commit e15f066

Browse files
committed
new build
1 parent e37ab2d commit e15f066

File tree

143 files changed

+14084
-568
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+14084
-568
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"git.ignoreLimitWarning": true
3+
}

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
![Five Nights at Freddy's](https://vignette.wikia.nocookie.net/freddy-fazbears-pizza/images/0/0c/Show_stage_nocamera.png/revision/latest?cb=20150119023526)
2+
3+
# ~ Five Nights at Freddy's Web
4+
5+
A web version I've made of the popular horror game [Five Nights at Freddy's](fnafar.com/).
6+
⚛️ It was made using popular technologies like [ReactJS](https://pt-br.reactjs.org/) and [Redux](https://redux.js.org/).
7+
8+
Uma versão na Web que eu fiz do famoso jogo de terror [Five Nights at Freddy's](fnafar.com/).
9+
⚛️ Foi feito usando tecnologias populares como [ReactJS](https://pt-br.reactjs.org/) e [Redux](https://redux.js.org/).
10+
11+
## VERSION 3.0 ⭐
12+
- Added custom night!
13+
14+
~ Link: [https://five-nights-at-freddys-web.herokuapp.com/](https://five-nights-at-freddys-web.herokuapp.com/)
15+
16+
![Five Nights at Freddy's](https://wendelldesousa.netlify.app/assets/FNAF.webp)
17+
18+
## Installation
19+
20+
First you need to clone this repository
21+
22+
```
23+
git clone https://github.com/wellsousaaa/Five-Nights-at-Freddys-Web.git
24+
```
25+
26+
Then start it using npm or yarn
27+
28+
```
29+
npm install
30+
```
31+
32+
Then start localhost
33+
34+
```
35+
npm start
36+
```
37+
38+
## Credits
39+
40+
This project was made by Wendell Sousa :D

asset-manifest.json

Lines changed: 0 additions & 103 deletions
This file was deleted.

index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "fnaf",
3+
"version": "0.1.0",
4+
"private": true,
5+
"homepage": "http://wellsousaaa.github.io/five-nights-at-freddys",
6+
"dependencies": {
7+
"@testing-library/jest-dom": "^4.2.4",
8+
"@testing-library/react": "^9.3.2",
9+
"@testing-library/user-event": "^7.1.2",
10+
"gh-pages": "^3.2.3",
11+
"react": "^16.13.1",
12+
"react-dom": "^16.13.1",
13+
"react-image-mapper": "^0.0.15",
14+
"react-redux": "^7.2.2",
15+
"react-scripts": "3.4.1",
16+
"redux": "^4.0.5"
17+
},
18+
"scripts": {
19+
"predeploy": "npm run build",
20+
"deploy": "gh-pages -d build",
21+
"start": "react-scripts start",
22+
"build": "react-scripts build",
23+
"test": "react-scripts test",
24+
"eject": "react-scripts eject"
25+
},
26+
"eslintConfig": {
27+
"extends": "react-app"
28+
},
29+
"browserslist": {
30+
"production": [
31+
">0.2%",
32+
"not dead",
33+
"not op_mini all"
34+
],
35+
"development": [
36+
"last 1 chrome version",
37+
"last 1 firefox version",
38+
"last 1 safari version"
39+
]
40+
}
41+
}

0 commit comments

Comments
 (0)