mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-22 01:08:59 +08:00
58 lines
2.0 KiB
JSON
58 lines
2.0 KiB
JSON
{
|
|
"name": "x-prober",
|
|
"description": "A PHP probe",
|
|
"license": "GPL-3",
|
|
"homepage": "https://github.com/kmvan/x-prober",
|
|
"scripts": {
|
|
"lang": "node ./tools/lang-builder.mjs",
|
|
"dev": "webpack --config webpack.config.mjs",
|
|
"dev:php": "php ./Make.php dev; php -S localhost:8000 -t .tmp",
|
|
"build": "webpack --config webpack.config.prod.mjs",
|
|
"build:php": "php-cs-fixer fix ./src --config=.php-cs-fixer53; php ./Make.php build; echo '\nPlease access via http://localhost:8001/prober.php'; php -S localhost:8001 -t dist",
|
|
"build:php-debug": "php ./Make.php build debug; echo '\nPlease access via http://localhost:8001/prober.php'; php -S localhost:8001 -t dist",
|
|
"php-cs-fixer-53": "php-cs-fixer fix ./src --config=.php-cs-fixer53"
|
|
},
|
|
"browserslist": [
|
|
"defaults"
|
|
],
|
|
"dependencies": {
|
|
"copy-to-clipboard": "^3.3.3",
|
|
"mobx": "^6.7.0",
|
|
"mobx-react-lite": "^3.4.0",
|
|
"polished": "^4.2.2",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-is": "^18.2.0",
|
|
"react-use": "^17.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/core-js": "^2.5.5",
|
|
"@types/node": "^18.11.11",
|
|
"@types/react": "^18.0.26",
|
|
"@types/react-dom": "^18.0.9",
|
|
"@typescript-eslint/eslint-plugin": "^5.45.1",
|
|
"@typescript-eslint/parser": "^5.45.1",
|
|
"css-loader": "^6.7.2",
|
|
"deep-sort-object": "^1.0.2",
|
|
"eslint": "^8.29.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.31.11",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"fast-glob": "^3.2.12",
|
|
"mini-css-extract-plugin": "^2.7.2",
|
|
"prettier": "^2.8.1",
|
|
"sass": "^1.56.1",
|
|
"sass-loader": "^13.2.0",
|
|
"style-loader": "^3.3.1",
|
|
"terser-webpack-plugin": "^5.3.6",
|
|
"ts-loader": "^9.4.2",
|
|
"typescript": "^4.9.4",
|
|
"typescript-plugin-css-modules": "^4.1.1",
|
|
"webpack": "^5.75.0",
|
|
"webpack-cli": "^5.0.1",
|
|
"webpack-common-shake": "^2.1.0",
|
|
"webpack-log": "^3.0.2"
|
|
}
|
|
}
|