This commit is contained in:
elforjani13
2021-09-21 19:21:06 +02:00
4 changed files with 34 additions and 19 deletions

25
.gitignore vendored
View File

@@ -1,3 +1,22 @@
/data
.env
/node_modules
# 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.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*

10
.prettierrc Normal file
View File

@@ -0,0 +1,10 @@
{
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"useTabs": false,
}

14
package-lock.json generated
View File

@@ -1654,11 +1654,6 @@
}
}
},
"@rehooks/local-storage": {
"version": "2.4.3",
"resolved": "https://registry.npmjs.org/@rehooks/local-storage/-/local-storage-2.4.3.tgz",
"integrity": "sha512-/Ohn+SnJm1eE3uXv3gsXLE4G6EYT3baqi4V/syyKfbyLoXmTn8h5ciY2ELug3xslzFNUMWyTGY3Ow47gl6k3kA=="
},
"@sheerun/mutationobserver-shim": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz",
@@ -12916,15 +12911,6 @@
"symbol-observable": "^1.2.0"
}
},
"redux-cookies-middleware": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/redux-cookies-middleware/-/redux-cookies-middleware-0.2.1.tgz",
"integrity": "sha512-0tWO8Qz0xLoWeti04oAUQvliDNaLpJSEwHkRPBOQT89EVjE17dTRpaXKGkKbHkab37+3n6Nm9IWID7DoTubWLA==",
"requires": {
"js-cookie": "^2.1.4",
"lodash": "^4.17.15"
}
},
"redux-devtools": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/redux-devtools/-/redux-devtools-3.5.0.tgz",

View File

@@ -1,6 +1,6 @@
{
"name": "client",
"version": "0.1.0",
"name": "bigcapital-client",
"version": "1.2.0",
"private": true,
"dependencies": {
"@babel/core": "7.8.4",