├── views ├── error.hbs ├── layout.hbs ├── partials │ ├── admin-header.hbs │ └── user-header.hbs ├── index.hbs ├── admin │ ├── add-category.hbs │ └── admin-login.hbs ├── user │ ├── view-category.hbs │ ├── verify-otp.hbs │ ├── login.hbs │ ├── view-image.hbs │ ├── order-success.hbs │ ├── verify-phone.hbs │ ├── view-products.hbs │ ├── orders.hbs │ ├── Add-address.hbs │ ├── signup.hbs │ └── cart.hbs └── layout │ └── layout.hbs ├── E-project ├── node_modules │ ├── @mapbox │ │ └── node-pre-gyp │ │ │ ├── bin │ │ │ ├── node-pre-gyp.cmd │ │ │ └── node-pre-gyp │ │ │ ├── node_modules │ │ │ ├── semver │ │ │ │ ├── classes │ │ │ │ │ ├── index.js │ │ │ │ │ └── comparator.js │ │ │ │ └── bin │ │ │ │ │ └── semver.js │ │ │ ├── .bin │ │ │ │ ├── nopt │ │ │ │ ├── semver │ │ │ │ ├── nopt.cmd │ │ │ │ ├── semver.cmd │ │ │ │ ├── nopt.ps1 │ │ │ │ └── semver.ps1 │ │ │ └── nopt │ │ │ │ ├── LICENSE │ │ │ │ ├── package.json │ │ │ │ ├── bin │ │ │ │ └── nopt.js │ │ │ │ ├── CHANGELOG.md │ │ │ │ └── README.md │ │ │ ├── lib │ │ │ ├── util │ │ │ │ ├── nw-pre-gyp │ │ │ │ │ ├── package.json │ │ │ │ │ └── index.html │ │ │ │ ├── compile.js │ │ │ │ ├── handle_gyp_opts.js │ │ │ │ ├── s3_setup.js │ │ │ │ └── napi.js │ │ │ ├── rebuild.js │ │ │ ├── reinstall.js │ │ │ ├── reveal.js │ │ │ ├── clean.js │ │ │ ├── pre-binding.js │ │ │ ├── info.js │ │ │ ├── unpublish.js │ │ │ ├── testpackage.js │ │ │ ├── build.js │ │ │ ├── configure.js │ │ │ ├── package.js │ │ │ ├── testbinary.js │ │ │ ├── publish.js │ │ │ ├── main.js │ │ │ ├── install.js │ │ │ └── node-pre-gyp.js │ │ │ ├── contributing.md │ │ │ └── LICENSE │ └── .bin │ │ ├── rc │ │ ├── mime │ │ ├── is-ci │ │ ├── nopt │ │ ├── rimraf │ │ ├── mkdirp │ │ ├── semver │ │ ├── nodemon │ │ ├── color-support │ │ ├── nodetouch │ │ ├── uglifyjs │ │ ├── handlebars │ │ ├── mime.cmd │ │ ├── rc.cmd │ │ ├── is-ci.cmd │ │ ├── node-pre-gyp │ │ ├── nopt.cmd │ │ ├── rimraf.cmd │ │ ├── mkdirp.cmd │ │ ├── semver.cmd │ │ ├── nodemon.cmd │ │ ├── uglifyjs.cmd │ │ ├── color-support.cmd │ │ ├── handlebars.cmd │ │ ├── nodetouch.cmd │ │ ├── node-pre-gyp.cmd │ │ ├── rc.ps1 │ │ ├── mime.ps1 │ │ ├── is-ci.ps1 │ │ ├── rimraf.ps1 │ │ ├── nopt.ps1 │ │ ├── mkdirp.ps1 │ │ ├── semver.ps1 │ │ ├── color-support.ps1 │ │ ├── nodemon.ps1 │ │ ├── nodetouch.ps1 │ │ ├── uglifyjs.ps1 │ │ ├── handlebars.ps1 │ │ └── node-pre-gyp.ps1 ├── confiq │ ├── collection.js │ └── connection.js ├── app.js ├── bin │ └── www └── helpers │ └── product-helpers.js ├── confiq ├── collection.js └── connection.js ├── package.json ├── app.js ├── bin └── www ├── helpers └── product-helpers.js └── routes ├── admin.js └── user.js /views/error.hbs: -------------------------------------------------------------------------------- 1 |
{{error.stack}}
4 |
--------------------------------------------------------------------------------
/E-project/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp.cmd:
--------------------------------------------------------------------------------
1 | @echo off
2 | node "%~dp0\node-pre-gyp" %*
3 |
--------------------------------------------------------------------------------
/E-project/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env node
2 | 'use strict';
3 |
4 | require('../lib/main');
5 |
--------------------------------------------------------------------------------
/confiq/collection.js:
--------------------------------------------------------------------------------
1 | module.exports={
2 | PRODUCT_COLLECTION:'product',
3 | USER_COLLECTION:'user',
4 | PRODUCT_CATEGORY:'category',
5 | CART_COLLECTION:'cart',
6 | ORDER_COLLECTION:'order'
7 | }
--------------------------------------------------------------------------------
/E-project/confiq/collection.js:
--------------------------------------------------------------------------------
1 | module.exports={
2 | PRODUCT_COLLECTION:'product',
3 | USER_COLLECTION:'user',
4 | PRODUCT_CATEGORY:'category',
5 | CART_COLLECTION:'cart',
6 | ORDER_COLLECTION:'order'
7 | }
--------------------------------------------------------------------------------
/E-project/node_modules/@mapbox/node-pre-gyp/node_modules/semver/classes/index.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | SemVer: require('./semver.js'),
3 | Range: require('./range.js'),
4 | Comparator: require('./comparator.js'),
5 | }
6 |
--------------------------------------------------------------------------------
/E-project/node_modules/@mapbox/node-pre-gyp/lib/util/nw-pre-gyp/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "main": "index.html",
3 | "name": "nw-pre-gyp-module-test",
4 | "description": "Node-webkit-based module test.",
5 | "version": "0.0.1",
6 | "window": {
7 | "show": false
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/views/layout.hbs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ₹{{product.offerPrice}}₹{{product.orginalPrice}} {{product.offerpercentage}}%off
15 | Available offers
16 |
17 | Bank Offer10% off on Slice Cards, up to ₹200. On orders of ₹1000 and aboveT&C
18 |
19 | Bank Offer5% Cashback on Flipkart Axis Bank a CardT&C
20 |
21 | Partner OfferBuy this product and get upto ₹500 off on Flipkart Furniture Know More
22 |
23 | Partner OfferSign up for Men's card Pay Later and get Card worth ₹100* Know More
24 |
25 |
26 |
44 |
69 | {{this.brand}}
71 | {{this.description}}
72 |
73 |
₹{{this.offerPrice}} orginal price ₹{{this.orginalPrice}}
74 |
{{this.offerpercentage}}% off
Hurry, Only 7 left!
78 | 79 |
80 | 81 | 82 |Receipt
25 | {{#each orders}} 26 |Address:
{{this.deliveryDetails.address}},
33 | {{this.deliveryDetails.state}}
34 | {{this.deliveryDetails.city}},
35 | {{this.deliveryDetails.pincode}}
36 | {{this.deliveryDetails.mobile}}
37 |
38 |
39 |
40 |
41 |
White
45 |{{this.Date}}
48 |Status: {{this.status}}
51 |Payment:{{this.paymentMethode}}
54 |₹{{this.totalAmount}}
58 |Track Order
70 |Out for delivary
79 |Delivered
80 |Order Details
88 |Total $898.00
89 |Invoice Number : 788152
93 |Discount $19.00
94 |Invoice Date : 22 Dec,2019
98 |GST 18% 123
99 |Recepits Voucher : 18KU-62IIK
103 |Delivery Charges Free
104 |{{this.product.description}}
29 |Color: blue
30 |Size: M
31 | 35 | 39 | 40 |Expected shipping delivery
77 |12.10.2020 - 14.10.2020
78 |We accept
83 |
95 | (including VAT)
120 | 121 |