commit b3d72a53e3126aae7bca7b386e2185f5f5788d01 Author: Sergey Krylov Date: Fri Mar 22 06:12:25 2024 +0300 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5a69be0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build +/public/CHANGELOG.md + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# ide +/.vscode +/.idea diff --git a/package.json b/package.json new file mode 100644 index 0000000..121e637 --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "money-controll-frontend-app", + "version": "0.0.0", + "description": "Frontend part of ksv741 MoneyControll App", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://gitlab.com/money-control2/web/frontend.git" + }, + "keywords": [ + "React", + "Frontend", + "Webpack", + "ksv741" + ], + "author": "Sergey ", + "license": "ISC", + "bugs": { + "url": "https://gitlab.com/money-control2/web/frontend/issues" + }, + "homepage": "https://gitlab.com/money-control2/web/frontend#readme" +}