mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-22 01:08:59 +08:00
66 lines
2.3 KiB
JSON
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.10.2",
|
|
"@babel/plugin-proposal-class-properties": "^7.10.1",
|
|
"@babel/plugin-proposal-decorators": "^7.10.1",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
|
|
"@babel/plugin-transform-async-to-generator": "^7.10.1",
|
|
"@babel/plugin-transform-strict-mode": "^7.10.1",
|
|
"@babel/preset-react": "^7.10.1",
|
|
"@babel/preset-typescript": "^7.10.1",
|
|
"@types/core-js": "^2.5.3",
|
|
"@types/node": "^14.0.11",
|
|
"@types/query-string": "^6.3.0",
|
|
"@types/react": "^16.9.35",
|
|
"@types/react-dom": "^16.9.8",
|
|
"babel-plugin-styled-components": "^1.10.7",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "^7.2.0",
|
|
"eslint-plugin-react": "^7.20.0",
|
|
"mobx": "^5.15.4",
|
|
"mobx-react": "^6.2.2",
|
|
"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": "^7.0.5",
|
|
"typescript": "^3.9.5",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-common-shake": "^2.1.0",
|
|
"webpack-dev-server": "^3.11.0",
|
|
"webpack-log": "^3.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@types/styled-components": "^5.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^3.1.0",
|
|
"@typescript-eslint/eslint-plugin-tslint": "^3.1.0",
|
|
"@typescript-eslint/parser": "^3.1.0",
|
|
"babel-loader": "^8.1.0",
|
|
"caniuse-lite": "^1.0.30001078",
|
|
"es6-promise": "^4.2.8",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"glob": "^7.1.6",
|
|
"polished": "^3.6.4",
|
|
"query-string": "^6.13.0",
|
|
"styled-components": "^5.1.1",
|
|
"typescript-plugin-styled-components": "^1.4.4"
|
|
}
|
|
}
|