2018-02-24 13:31:59 +08:00
|
|
|
{
|
|
|
|
"name": "flarum-webpack-config",
|
2023-06-30 01:57:53 +08:00
|
|
|
"type": "module",
|
2024-08-02 19:49:34 +08:00
|
|
|
"version": "3.0.0",
|
2021-05-27 17:43:21 +08:00
|
|
|
"description": "Webpack config for Flarum JS and TS transpilation.",
|
2023-06-30 01:57:53 +08:00
|
|
|
"main": "src/index.cjs",
|
2021-05-04 07:39:10 +08:00
|
|
|
"author": "Flarum Team",
|
2018-02-24 13:31:59 +08:00
|
|
|
"license": "MIT",
|
2023-06-07 18:09:34 +08:00
|
|
|
"prettier": "@flarum/prettier-config",
|
2018-06-16 21:24:43 +08:00
|
|
|
"peerDependencies": {
|
2023-04-19 14:45:00 +08:00
|
|
|
"webpack": "^5.76.0"
|
2018-06-16 21:24:43 +08:00
|
|
|
},
|
2018-02-24 13:31:59 +08:00
|
|
|
"dependencies": {
|
2023-06-07 18:09:34 +08:00
|
|
|
"@babel/core": "^7.20.2",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
|
|
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
|
|
"@babel/plugin-transform-object-assign": "^7.18.6",
|
|
|
|
"@babel/plugin-transform-react-jsx": "^7.19.0",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
|
|
"@babel/preset-env": "^7.20.2",
|
|
|
|
"@babel/preset-react": "^7.18.6",
|
|
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
|
|
"@babel/runtime": "^7.20.1",
|
|
|
|
"babel-loader": "^9.1.0",
|
2023-06-30 01:57:53 +08:00
|
|
|
"loader-utils": "^1.4.0",
|
|
|
|
"schema-utils": "^3.0.0",
|
2023-06-07 18:09:34 +08:00
|
|
|
"typescript": "^4.9.3",
|
2023-04-19 14:45:00 +08:00
|
|
|
"webpack": "^5.76.0",
|
2023-06-07 18:09:34 +08:00
|
|
|
"webpack-bundle-analyzer": "^4.7.0"
|
2021-05-04 07:39:10 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-30 01:57:53 +08:00
|
|
|
"@flarum/prettier-config": "^1.0.0",
|
|
|
|
"babel-jest": "^29.5.0",
|
|
|
|
"jest": "^29.5.0",
|
|
|
|
"memfs": "^3.5.3",
|
|
|
|
"prettier": "^2.8.0"
|
2021-11-09 07:53:18 +08:00
|
|
|
},
|
2023-06-07 18:09:34 +08:00
|
|
|
"scripts": {
|
2023-06-07 18:19:59 +08:00
|
|
|
"dev": "echo 'skipping..'",
|
|
|
|
"build": "echo 'skipping..'",
|
|
|
|
"analyze": "echo 'skipping..'",
|
|
|
|
"format": "prettier --write .",
|
|
|
|
"format-check": "prettier --check .",
|
|
|
|
"clean-typings": "echo 'skipping..'",
|
|
|
|
"build-typings": "echo 'skipping..'",
|
|
|
|
"post-build-typings": "echo 'skipping..'",
|
|
|
|
"check-typings": "echo 'skipping..'",
|
2023-06-30 01:57:53 +08:00
|
|
|
"check-typings-coverage": "echo 'skipping..'",
|
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "node"
|
2023-06-07 18:09:34 +08:00
|
|
|
}
|
2018-02-24 13:31:59 +08:00
|
|
|
}
|