mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-22 01:08:59 +08:00
69 lines
2.4 KiB
JSON
69 lines
2.4 KiB
JSON
{
|
|
"name": "x-prober",
|
|
"description": "A PHP probe",
|
|
"scripts": {
|
|
"lang": "node ./build-lang.js",
|
|
"dev": "cross-env webpack --config webpack.config.js --progress",
|
|
"dev:php": "php ./Make.php dev; php -S localhost:8000 -t .tmp",
|
|
"build": "cross-env webpack --config webpack.config.prod.js --progress",
|
|
"build:php": "php-cs-fixer fix ./src --config=.php_cs53; php ./Make.php build; php -S localhost:8000/prober.php -t dist",
|
|
"build:php-debug": "php ./Make.php build debug; php -S localhost:8000/prober.php -t dist",
|
|
"php-cs-fixer-53": "php-cs-fixer fix ./src --config=.php_cs53"
|
|
},
|
|
"browserslist": [
|
|
"last 4 version"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.3",
|
|
"@babel/plugin-proposal-class-properties": "^7.12.1",
|
|
"@babel/plugin-proposal-decorators": "^7.12.1",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
|
|
"@babel/plugin-transform-async-to-generator": "^7.12.1",
|
|
"@babel/plugin-transform-strict-mode": "^7.12.1",
|
|
"@babel/preset-react": "^7.12.1",
|
|
"@babel/preset-typescript": "^7.12.1",
|
|
"@types/core-js": "^2.5.4",
|
|
"@types/node": "^14.14.6",
|
|
"@types/query-string": "^6.3.0",
|
|
"@types/react": "^16.9.55",
|
|
"@types/react-dom": "^16.9.9",
|
|
"babel-plugin-styled-components": "^1.11.1",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "^7.12.1",
|
|
"eslint-plugin-react": "^7.21.5",
|
|
"node-libs-browser": "^2.2.1",
|
|
"pofile": "^1.1.0",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"react-hot-loader": "^4.13.0",
|
|
"terser-webpack-plugin": "^5.0.3",
|
|
"ts-loader": "^8.0.7",
|
|
"typescript": "^4.0.5",
|
|
"webpack": "^5.3.0",
|
|
"webpack-cli": "^4.1.0",
|
|
"webpack-common-shake": "^2.1.0",
|
|
"webpack-dev-server": "^3.11.0",
|
|
"webpack-log": "^3.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@types/immutability-helper": "^2.6.3",
|
|
"@types/styled-components": "^5.1.4",
|
|
"@typescript-eslint/eslint-plugin": "^4.6.0",
|
|
"@typescript-eslint/eslint-plugin-tslint": "^4.6.0",
|
|
"@typescript-eslint/parser": "^4.6.0",
|
|
"JSON2": "^0.1.0",
|
|
"babel-loader": "^8.1.0",
|
|
"caniuse-lite": "^1.0.30001153",
|
|
"es6-promise": "^4.2.8",
|
|
"eslint-config-prettier": "^6.15.0",
|
|
"glob": "^7.1.6",
|
|
"immutability-helper": "^3.1.1",
|
|
"mobx": "^6.0.1",
|
|
"mobx-react-lite": "^3.0.1",
|
|
"polished": "^4.0.3",
|
|
"query-string": "^6.13.6",
|
|
"styled-components": "^5.2.0",
|
|
"typescript-plugin-styled-components": "^1.4.4"
|
|
}
|
|
}
|