100 строки
2.7 KiB
JSON
100 строки
2.7 KiB
JSON
{
|
|
"name": "fluentui-editable-grid",
|
|
"version": "1.12.1",
|
|
"license": "MIT",
|
|
"description": "Wrapper over the existing DetailsList that makes in-place editability work like a dream(among many other new features)",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/FluentUIEditableDetailsList"
|
|
},
|
|
"keywords": [
|
|
"editable",
|
|
"grid",
|
|
"detailslist",
|
|
"fluentui"
|
|
],
|
|
"bugs": "https://github.com/microsoft/FluentUIEditableDetailsList/issues",
|
|
"dependencies": {
|
|
"@babel/cli": "7.12.1",
|
|
"@babel/core": "^7.14.8",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
|
|
"@babel/preset-env": "^7.14.9",
|
|
"@babel/preset-react": "^7.14.5",
|
|
"@babel/preset-stage-0": "^7.8.3",
|
|
"@fluentui/react": "^8.26.0",
|
|
"@fluentui/react-hooks": "^8.3.4",
|
|
"@testing-library/jest-dom": "^5.14.1",
|
|
"@testing-library/react": "^11.2.7",
|
|
"@testing-library/user-event": "^12.8.3",
|
|
"@types/file-saver": "^2.0.1",
|
|
"@types/jest": "^26.0.24",
|
|
"@types/node": "^12.20.17",
|
|
"@types/react": "^17.0.15",
|
|
"@types/react-dom": "^17.0.9",
|
|
"cpx": "^1.5.0",
|
|
"file-saver": "^2.0.2",
|
|
"office-ui-fabric-react": "^7.0.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-scripts": "5.0.0",
|
|
"react-toastify": "^7.0.4",
|
|
"typescript": "^4.3.5",
|
|
"web-vitals": "^1.1.2",
|
|
"webpack-cli": "^4.7.2",
|
|
"xlsx": "^0.17.0",
|
|
"y18n": "^3.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"immer": ">=9.0.6",
|
|
"just-scripts": "^0.27.0",
|
|
"just-stack-react": "^1.0.0",
|
|
"marked": ">=4.0.10",
|
|
"nth-check": ">=2.0.1",
|
|
"tar": ">=6.1.9"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build-site": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject",
|
|
"clean": "if exist dist rd /s /q dist",
|
|
"prepareBuild": "npm run clean && mkdir dist",
|
|
"compile": "set NODE_ENV=production & babel src/libs --out-dir dist --extensions \".ts,.tsx\" --copy-files",
|
|
"copy": "cpx \"{package.json,README.md}\" dist",
|
|
"build": "npm run prepareBuild && npm run compile && tsc && npm run copy",
|
|
"prepare": "npm run build"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@babel/env",
|
|
"@babel/preset-react",
|
|
"@babel/preset-typescript"
|
|
],
|
|
"ignore": [
|
|
"**/*.test.js",
|
|
"**/stories.js",
|
|
"**/*.stories.js"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|