2024-06-12 21:06:08 +04:00
|
|
|
{
|
|
|
|
"name": "book-store",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Online book store",
|
|
|
|
"main": "index.html",
|
|
|
|
"scripts": {
|
2024-06-19 21:53:47 +04:00
|
|
|
"vite": "vite",
|
|
|
|
"start": "http-server -p 3000 ./",
|
|
|
|
"build": "vite build",
|
|
|
|
"rest": "json-server --watch data.json -p 8081",
|
|
|
|
"dev": "npm-run-all --parallel rest vite",
|
|
|
|
"prod": "npm-run-all build --parallel serve rest"
|
2024-06-12 21:06:08 +04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-19 21:53:47 +04:00
|
|
|
"bootstrap": "^5.2.3",
|
|
|
|
"@fortawesome/fontawesome-free": "6.4.2",
|
|
|
|
"json-server": "^1.0.0-beta.1"
|
2024-06-12 21:06:08 +04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-06-19 21:53:47 +04:00
|
|
|
"eslint": "8.50.0",
|
|
|
|
"eslint-config-airbnb-base": "15.0.0",
|
|
|
|
"eslint-plugin-import": "2.28.1",
|
|
|
|
"http-server": "14.1.1 ",
|
|
|
|
"vite": "^4.1.4",
|
|
|
|
"npm-run-all": "4.1.5"
|
2024-06-12 21:06:08 +04:00
|
|
|
}
|
|
|
|
}
|