├── .babelrc ├── .gitignore ├── README.md ├── app.js ├── bin └── www ├── client ├── error.ejs ├── img │ └── favicon.png ├── index.ejs ├── src │ ├── components │ │ ├── Dashboard │ │ │ └── Dashboard.tsx │ │ └── layout │ │ │ └── Layout.tsx │ ├── index.tsx │ ├── models │ │ ├── currency.tsx │ │ ├── invoice.tsx │ │ └── user.tsx │ ├── reducers │ │ ├── count.tsx │ │ └── index.tsx │ ├── routes │ │ └── index.tsx │ ├── services │ │ ├── helper.tsx │ │ └── invoice.tsx │ └── store │ │ └── index.tsx └── style │ └── theme.css ├── constants.js ├── doc.conf ├── nodemon.json ├── package.json ├── routes └── api │ └── invoices.js ├── services └── invoiceService.js ├── temp └── info.txt ├── tsconfig.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/bin/www -------------------------------------------------------------------------------- /client/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/error.ejs -------------------------------------------------------------------------------- /client/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/img/favicon.png -------------------------------------------------------------------------------- /client/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/index.ejs -------------------------------------------------------------------------------- /client/src/components/Dashboard/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/components/Dashboard/Dashboard.tsx -------------------------------------------------------------------------------- /client/src/components/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/components/layout/Layout.tsx -------------------------------------------------------------------------------- /client/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/index.tsx -------------------------------------------------------------------------------- /client/src/models/currency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/models/currency.tsx -------------------------------------------------------------------------------- /client/src/models/invoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/models/invoice.tsx -------------------------------------------------------------------------------- /client/src/models/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/models/user.tsx -------------------------------------------------------------------------------- /client/src/reducers/count.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/reducers/count.tsx -------------------------------------------------------------------------------- /client/src/reducers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/reducers/index.tsx -------------------------------------------------------------------------------- /client/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/routes/index.tsx -------------------------------------------------------------------------------- /client/src/services/helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/services/helper.tsx -------------------------------------------------------------------------------- /client/src/services/invoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/services/invoice.tsx -------------------------------------------------------------------------------- /client/src/store/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/src/store/index.tsx -------------------------------------------------------------------------------- /client/style/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/client/style/theme.css -------------------------------------------------------------------------------- /constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/constants.js -------------------------------------------------------------------------------- /doc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/doc.conf -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignore": ["client/*"] 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/package.json -------------------------------------------------------------------------------- /routes/api/invoices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/routes/api/invoices.js -------------------------------------------------------------------------------- /services/invoiceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/services/invoiceService.js -------------------------------------------------------------------------------- /temp/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/temp/info.txt -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fhrryDeveloper/invoice-template/HEAD/webpack.config.js --------------------------------------------------------------------------------