Skip to content

Commit 2f866b8

Browse files
committed
cleaned up the project
1 parent 94124a7 commit 2f866b8

File tree

6 files changed

+6940
-8997
lines changed

6 files changed

+6940
-8997
lines changed

.yarnclean

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# test directories
2+
__tests__
3+
test
4+
tests
5+
powered-test
6+
7+
# asset directories
8+
docs
9+
doc
10+
website
11+
images
12+
assets
13+
14+
# examples
15+
example
16+
examples
17+
18+
# code coverage directories
19+
coverage
20+
.nyc_output
21+
22+
# build scripts
23+
Makefile
24+
Gulpfile.js
25+
Gruntfile.js
26+
27+
# configs
28+
appveyor.yml
29+
circle.yml
30+
codeship-services.yml
31+
codeship-steps.yml
32+
wercker.yml
33+
.tern-project
34+
.gitattributes
35+
.editorconfig
36+
.*ignore
37+
.eslintrc
38+
.jshintrc
39+
.flowconfig
40+
.documentup.json
41+
.yarn-metadata.json
42+
.travis.yml
43+
44+
# misc
45+
*.md

client/package.json

+39-37
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,41 @@
11
{
2-
"name": "client",
3-
"version": "2.0.0",
4-
"private": true,
5-
"dependencies": {
6-
"react": "^17.0.2",
7-
"react-dom": "^17.0.2",
8-
"react-router-dom": "^5.3.0",
9-
"react-scripts": "^4.0.3"
10-
},
11-
"devDependencies": {
12-
"@testing-library/jest-dom": "^5.14.1",
13-
"@testing-library/react": "^12.0.0",
14-
"@testing-library/user-event": "^13.2.1"
15-
},
16-
"scripts": {
17-
"start": "react-scripts start",
18-
"build": "react-scripts build",
19-
"test": "react-scripts test",
20-
"test:nowatch": "react-scripts test --watchAll=false",
21-
"eject": "react-scripts eject"
22-
},
23-
"eslintConfig": {
24-
"extends": "react-app"
25-
},
26-
"browserslist": {
27-
"production": [
28-
">0.2%",
29-
"not dead",
30-
"not op_mini all"
31-
],
32-
"development": [
33-
"last 1 chrome version",
34-
"last 1 firefox version",
35-
"last 1 safari version"
36-
]
37-
},
38-
"proxy": "http://localhost:5000"
2+
"name": "client",
3+
"version": "3.0.0",
4+
"private": true,
5+
"dependencies": {
6+
"react": "^18.2.0",
7+
"react-dom": "^18.2.0",
8+
"react-scripts": "5.0.1",
9+
"web-vitals": "^2.1.4",
10+
"@testing-library/jest-dom": "^5.16.5",
11+
"@testing-library/react": "^13.4.0",
12+
"@testing-library/user-event": "^13.5.0"
13+
},
14+
"devDependencies": {},
15+
"scripts": {
16+
"start": "react-scripts start",
17+
"build": "react-scripts build",
18+
"test": "react-scripts test",
19+
"test:nowatch": "react-scripts test --watchAll=false",
20+
"eject": "react-scripts eject"
21+
},
22+
"eslintConfig": {
23+
"extends": [
24+
"react-app",
25+
"react-app/jest"
26+
]
27+
},
28+
"browserslist": {
29+
"production": [
30+
">0.2%",
31+
"not dead",
32+
"not op_mini all"
33+
],
34+
"development": [
35+
"last 1 chrome version",
36+
"last 1 firefox version",
37+
"last 1 safari version"
38+
]
39+
},
40+
"proxy": "http://localhost:5000"
3941
}

0 commit comments

Comments
 (0)