├── .gitignore
├── index.js
├── index.html
└── package.json
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | const car = 'mers'
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Document
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "js-project",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "author": "Samar Badriddinov",
10 | "license": "ISC",
11 | "dependencies": {
12 | "bootstrap": "^5.0.2",
13 | "jquery": "^3.6.0"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------