@kbfront/kb-ui
Version:
KB React UI Library
95 lines (94 loc) • 2.55 kB
JSON
{
"name": "@kbfront/kb-ui",
"version": "1.5.4",
"description": "KB React UI Library",
"main": "main.js",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf build",
"compile": "npm run tsc",
"build": "npm run clean && npm run compile && webpack --config configs/webpack.config.lib.js --mode=production",
"build:dev": "npm run clean && npm run compile && webpack --config configs/webpack.config.lib.js --mode=development",
"doc-install": "cd docs && npm install",
"dev": "cd docs && npm start",
"pub": "npm run build && cd build && npm publish",
"tsc": "tsc -p configs/tsconfig.lib.json",
"tsc:watch": "tsc --noEmit --watch -p configs/tsconfig.lib.json",
"test": ""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
],
"*.scss": [
"prettier --write",
"stylelint --fix",
"git add"
]
},
"keywords": [
"kb",
"react",
"ui",
"library"
],
"engines": {
"node": ">=10.x",
"npm": ">=6.x"
},
"author": "KB-Front",
"license": "ISC",
"peerDependencies": {
"react": ">=16.3.2",
"react-dom": ">=16.3.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/node": "^13.13.10",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.7",
"@types/react-router-dom": "^5.1.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"husky": "^4.2.3",
"lint-staged": "^10.2.9",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.6.0",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^1.2.3",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "^8.3.0",
"typed-css-modules-loader": "0.0.18",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"repository": {
"type": "git",
"url": "https://bitbucket.org/scm/front/kb-ui.git"
},
"dependencies": {
"react-router-dom": "^5.2.0"
}
}