initial commit

This commit is contained in:
Sergey Krylov 2024-03-22 06:12:25 +03:00
commit b3d72a53e3
2 changed files with 53 additions and 0 deletions

28
.gitignore vendored Normal file
View File

@ -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

25
package.json Normal file
View File

@ -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 <ksv741@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/money-control2/web/frontend/issues"
},
"homepage": "https://gitlab.com/money-control2/web/frontend#readme"
}