mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui-library.git
synced 2026-01-27 10:23:20 +00:00
103 lines
3.0 KiB
JSON
103 lines
3.0 KiB
JSON
{
|
|
"name": "@tip-wlan/wlan-cloud-ui-library",
|
|
"version": "1.2.23",
|
|
"author": "NetExperience",
|
|
"description": "React UI Library",
|
|
"engines": {
|
|
"npm": ">=5",
|
|
"node": ">=8"
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write 'src/**/*{.js,.scss}'",
|
|
"eslint-fix": "eslint --fix 'src/**/*.js'",
|
|
"eslint": "eslint 'src/**/*.js' --max-warnings=0",
|
|
"build": "webpack --mode production",
|
|
"prepublishOnly": "npm run build",
|
|
"watch:js": "npm run build -- -w",
|
|
"watch": "npm run build && npm run watch:js",
|
|
"test": "jest --coverage --silent"
|
|
},
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"peerDependencies": {
|
|
"@ant-design/icons": "^4.2.1",
|
|
"antd": "^4.5.2",
|
|
"history": "^4.10.1",
|
|
"lodash": "^4.17.15",
|
|
"moment": "^2.26.0",
|
|
"prop-types": "^15.7.0",
|
|
"react": "^16.3.0",
|
|
"react-dom": "^16.3.0",
|
|
"react-router-dom": "^5.1.0",
|
|
"recharts": "^2.0.9"
|
|
},
|
|
"devDependencies": {
|
|
"@ant-design/icons": "^4.2.1",
|
|
"@babel/core": "^7.8.7",
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
"@babel/preset-env": "^7.9.0",
|
|
"@babel/preset-react": "^7.8.3",
|
|
"@testing-library/dom": "^7.30.1",
|
|
"@testing-library/jest-dom": "^5.11.10",
|
|
"@testing-library/react": "^11.2.5",
|
|
"@testing-library/user-event": "^13.0.16",
|
|
"antd": "^4.5.2",
|
|
"babel-core": "^6.26.3",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-jest": "^25.4.0",
|
|
"babel-loader": "^8.0.6",
|
|
"babel-plugin-import": "^1.13.0",
|
|
"babel-plugin-root-import": "^6.4.1",
|
|
"babel-polyfill": "^6.26.0",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"compression-webpack-plugin": "^7.1.2",
|
|
"css-loader": "^3.4.2",
|
|
"css-minimizer-webpack-plugin": "^1.3.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb": "^18.0.1",
|
|
"eslint-config-prettier": "^6.10.0",
|
|
"eslint-config-react": "^1.1.7",
|
|
"eslint-loader": "^3.0.3",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"eslint-plugin-react": "^7.19.0",
|
|
"eslint-plugin-react-hooks": "^2.5.0",
|
|
"faker": "^5.4.0",
|
|
"husky": "^4.2.3",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^26.6.3",
|
|
"less": "^3.11.1",
|
|
"less-loader": "^6.2.0",
|
|
"lint-staged": "^10.0.8",
|
|
"lodash": "^4.17.20",
|
|
"mini-css-extract-plugin": "^1.3.9",
|
|
"node-sass": "^4.14.1",
|
|
"prettier": "^1.19.1",
|
|
"prop-types": "^15.7.2",
|
|
"react": "^16.13.0",
|
|
"react-dom": "^16.13.0",
|
|
"react-router-dom": "^5.1.2",
|
|
"react-test-renderer": "^16.13.1",
|
|
"recharts": "^2.0.9",
|
|
"sass-loader": "^8.0.2",
|
|
"style-loader": "^1.1.3",
|
|
"terser-webpack-plugin": "^5.1.1",
|
|
"webpack": "^5.28.0",
|
|
"webpack-bundle-analyzer": "^4.4.0",
|
|
"webpack-cli": "^4.5.0",
|
|
"webpack-dev-server": "^3.11.2",
|
|
"webpack-merge": "^5.7.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx}": [
|
|
"eslint --fix 'src/**/*.js' --max-warnings=0",
|
|
"prettier --write"
|
|
]
|
|
}
|
|
} |