30 lines
839 B
JSON
30 lines
839 B
JSON
{
|
|
"name": "online-library",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "npm-run-all --parallel backend vite",
|
|
"vite": "vite",
|
|
"build": "vite build",
|
|
"serve": "http-server -p 3000 ./dist/",
|
|
"backend":"json-server database/db.json -p 5174",
|
|
"prod": "npm-run-all build --parallel backend serve",
|
|
"lint": "eslint . --ext js --report-unused-disable-directives --max-warnings 0"
|
|
},
|
|
"dependencies": {
|
|
"bootstrap": "5.3.3",
|
|
"bootstrap-icons": "1.11.3"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "8.56.0",
|
|
"eslint-config-airbnb-base": "15.0.0",
|
|
"eslint-config-prettier": "10.0.2",
|
|
"eslint-plugin-html": "8.1.2",
|
|
"eslint-plugin-import": "2.31.0",
|
|
"eslint-plugin-prettier": "5.2.3",
|
|
"http-server": "14.1.1",
|
|
"npm-run-all": "4.1.5",
|
|
"vite": "6.2.0"
|
|
}
|
|
}
|