pashto-inflector/package.json

81 lines
2.8 KiB
JSON
Raw Normal View History

2021-03-09 12:39:13 +00:00
{
2022-10-08 16:58:17 +00:00
"name": "pashto-inflector",
2024-06-26 19:52:55 +00:00
"version": "7.1.5",
2021-03-09 12:39:13 +00:00
"author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
2021-03-09 13:41:57 +00:00
"homepage": "https://verbs.lingdocs.com",
2021-03-09 12:39:13 +00:00
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/lingdocs/pashto-inflector.git"
},
"devDependencies": {
2021-03-09 13:41:57 +00:00
"@fortawesome/fontawesome-free": "^5.15.2",
2021-03-09 12:39:13 +00:00
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.20",
2021-06-17 18:16:11 +00:00
"@types/node": "^15.12.1",
2021-03-09 12:39:13 +00:00
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
2021-03-09 13:41:57 +00:00
"bootstrap": "^4.6.0",
2023-08-09 12:04:36 +00:00
"jest-extended": "^4.0.1",
2022-10-09 05:58:28 +00:00
"node-fetch": "^3.2.10",
"node-fetch-commonjs": "^3.2.4",
"pbf": "^3.2.1",
2021-03-09 12:39:13 +00:00
"react": "^17.0.1",
"react-bootstrap": "^1.5.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.3",
2023-08-16 07:48:48 +00:00
"typescript": "^5.1.6",
2021-03-09 12:39:13 +00:00
"web-vitals": "^1.0.1"
},
"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",
2022-10-08 18:02:55 +00:00
"preinstall": "echo '*** Be sure to use yarn install-r not yarn install ***!'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
2023-08-14 11:09:38 +00:00
"install-r": "yarn install && node get-words.js && cd src/lib && yarn install && cd ../components && yarn install",
"build-website": "node get-words.js && npm run build",
2022-10-09 10:40:51 +00:00
"build-library": "cd src/components && rimraf dist && tsc --project lib-tsconfig.json && node post-build.cjs && cd ../lib && rimraf dist && tsc --project lib-tsconfig.json && node_modules/rollup/dist/bin/rollup -c",
"test-ci": "npm run test -- --watchAll=false",
"get-words": "node get-words.js"
},
2021-03-09 12:39:13 +00:00
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
2022-05-20 23:17:03 +00:00
],
"rules": {
"no-warning-comments": [
1,
{
"terms": [
"fixme",
"xxx"
],
"location": "anywhere"
}
]
2022-05-20 23:17:03 +00:00
}
2021-03-09 12:39:13 +00:00
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
2022-10-08 16:54:36 +00:00
},
2023-07-23 06:32:27 +00:00
"dependencies": {}
}