Files
archived-x-prober/package.json
2021-10-25 06:35:46 +08:00

61 lines
2.1 KiB
JSON

{
"name": "x-prober",
"description": "A PHP probe",
"license": "GPL-3",
"homepage": "https://github.com/kmvan/x-prober",
"scripts": {
"lang": "node ./build-lang.js",
"dev": "webpack --config webpack.config.js --progress",
"dev:php": "php ./Make.php dev; php -S localhost:8000 -t .tmp",
"build": "webpack --config webpack.config.prod.js --progress",
"build:php": "php-cs-fixer fix ./src --config=.php-cs-fixer53.php; 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.php"
},
"browserslist": [
"defaults"
],
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"deep-sort-object": "^1.0.2",
"glob": "^7.2.0",
"isomorphic-unfetch": "^3.1.0",
"mobx": "^6.3.5",
"mobx-react-lite": "^3.2.1",
"polished": "^4.1.3",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-use": "^17.3.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@types/core-js": "^2.5.5",
"@types/node": "^16.11.4",
"@types/react": "^17.0.32",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-loader": "^8.2.3",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"pofile": "^1.1.1",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"typescript-plugin-styled-components": "^2.0.0",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-common-shake": "^2.1.0",
"webpack-dev-server": "^4.3.1",
"webpack-log": "^3.0.2"
}
}