Files
archived-x-prober/package.json
2020-08-19 16:47:46 +08:00

66 lines
2.3 KiB
JSON

{
"name": "x-prober",
"description": "A PHP prober",
"scripts": {
"lang": "node ./build-lang.js",
"dev": "cross-env webpack --display-error-details --progress --colors --watch",
"dev-php": "php ./Make.php dev; php -S localhost:8000 -t .tmp",
"build": "cross-env webpack --config=prod.webpack.config.js --display-error-details --progress --colors",
"build-php": "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.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/plugin-transform-strict-mode": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/core-js": "^2.5.3",
"@types/node": "^14.6.0",
"@types/query-string": "^6.3.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"babel-plugin-styled-components": "^1.11.1",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-plugin-react": "^7.20.6",
"mobx": "^5.15.6",
"mobx-react": "^6.2.5",
"node-libs-browser": "^2.2.1",
"pofile": "^1.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-common-shake": "^2.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-log": "^3.0.1"
},
"dependencies": {
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/eslint-plugin-tslint": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-loader": "^8.1.0",
"caniuse-lite": "^1.0.30001116",
"es6-promise": "^4.2.8",
"eslint-config-prettier": "^6.11.0",
"glob": "^7.1.6",
"polished": "^3.6.5",
"query-string": "^6.13.1",
"styled-components": "^5.1.1",
"typescript-plugin-styled-components": "^1.4.4"
}
}