2021-03-09 12:39:13 +00:00
{
2024-08-12 20:23:01 +00:00
"name" : "pashto-inflector-website" ,
2024-08-12 20:25:46 +00:00
"version" : "7.6.1" ,
2024-08-12 19:48:31 +00:00
"type" : "module" ,
2022-10-06 08:47:36 +00:00
"scripts" : {
2022-10-09 10:03:13 +00:00
"patch" : "npm version patch --no-git-tag-version && cd src/lib && npm version patch --no-git-tag-version && cd ../components && npm version patch --no-git-tag-version" ,
"minor" : "npm version minor --no-git-tag-version && cd src/lib && npm version minor --no-git-tag-version && cd ../components && npm version minor --no-git-tag-version" ,
"major" : "npm version major --no-git-tag-version && cd src/lib && npm version major --no-git-tag-version && cd ../components && npm version major --no-git-tag-version" ,
2024-08-12 19:48:31 +00:00
"preinstall" : "echo '*** Be sure to use 'yarn install-all' not 'yarn install' ***!'" ,
"dev" : "vite" ,
"lint" : "eslint ." ,
"test" : "jest" ,
"preview" : "vite preview" ,
2024-08-12 19:51:31 +00:00
"install-all" : "yarn install && node get-words.cjs && cd src/lib && yarn install && cd ../components && yarn install" ,
2024-08-12 19:48:31 +00:00
"build-website" : "tsc -b && vite build" ,
"build-components" : "rm -rf src/components/dist && tsc --project src/components/tsconfig.json && cd src/components && node post-build.cjs" ,
"build-lib" : "rm -rf src/lib/dist && tsc --project src/lib/tsconfig.json" ,
"get-words" : "node get-words.cjs" ,
2024-08-06 20:13:42 +00:00
"check-all-inflections" : "tsx check-all-inflections.ts"
2022-10-06 08:47:36 +00:00
} ,
2024-08-12 19:48:31 +00:00
"dependencies" : {
"react" : "^18.3.1" ,
"react-dom" : "^18.3.1" ,
"bootstrap" : "4.6.1" ,
"react-bootstrap" : "1.5.1" ,
"@fortawesome/fontawesome-free" : "^5.15.2"
2021-03-09 12:39:13 +00:00
} ,
2024-08-12 19:48:31 +00:00
"devDependencies" : {
"@eslint/js" : "^9.8.0" ,
"@types/jest" : "^29.5.12" ,
"@types/react" : "^18.3.3" ,
"@types/react-dom" : "^18.3.0" ,
"@vitejs/plugin-react" : "^4.3.1" ,
"eslint" : "^9.8.0" ,
"eslint-plugin-react-hooks" : "^5.1.0-rc.0" ,
"eslint-plugin-react-refresh" : "^0.4.9" ,
"globals" : "^15.9.0" ,
"jest" : "^29.7.0" ,
"jest-environment-jsdom" : "^29.7.0" ,
"jest-extended" : "^4.0.2" ,
"ts-jest" : "^29.2.4" ,
"tsx" : "^4.17.0" ,
"typescript" : "^5.5.3" ,
"typescript-eslint" : "^8.0.0" ,
"vite" : "^5.4.0"
}
2024-08-12 20:25:46 +00:00
}