flecks/packages/build/package.json

67 lines
1.8 KiB
JSON
Raw Normal View History

2024-01-22 09:16:07 -06:00
{
"name": "@flecks/build",
2024-02-09 07:12:09 -06:00
"version": "4.0.5",
2024-01-23 21:28:15 -06:00
"author": "cha0s",
"license": "MIT",
2024-01-22 09:16:07 -06:00
"scripts": {
2024-02-10 11:09:21 -06:00
"build": "flecks build",
2024-01-26 08:26:59 -06:00
"clean": "rm -rf dist node_modules yarn.lock",
2024-02-10 11:09:21 -06:00
"lint": "flecks lint",
"test": "flecks test"
2024-01-22 09:16:07 -06:00
},
2024-02-08 02:13:36 -06:00
"repository": {
"type": "git",
"url": "git+https://github.com/cha0s/flecks.git",
"directory": "packages/build"
},
"publishConfig": {
"access": "public"
},
2024-01-22 09:16:07 -06:00
"bin": {
"flecks": "./build/cli.js"
},
"files": [
"server.js"
],
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.23.3",
"@babel/eslint-plugin": "^7.22.10",
"@babel/generator": "^7.12.10",
2024-01-22 09:16:07 -06:00
"@babel/plugin-transform-regenerator": "^7.16.7",
"@babel/preset-env": "^7.12.11",
"@babel/traverse": "^7.17.0",
"@babel/types": "^7.17.0",
2024-02-09 07:12:09 -06:00
"@flecks/core": "^4.0.5",
2024-01-22 09:16:07 -06:00
"babel-loader": "^9.1.3",
"babel-merge": "^3.0.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
2024-02-07 10:15:07 -06:00
"chokidar": "^3.5.3",
2024-01-22 09:16:07 -06:00
"commander": "11.1.0",
"copy-webpack-plugin": "^11.0.0",
"enhanced-resolve": "^5.9.2",
2024-01-22 12:11:23 -06:00
"eslint": "^8.56.0",
2024-01-22 09:16:07 -06:00
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"glob": "^10.3.10",
"globals": "^13.23.0",
"graceful-fs": "^4.2.11",
2024-01-31 09:30:06 -06:00
"mocha": "^10.2.0",
2024-02-07 10:15:07 -06:00
"precinct": "^11.0.5",
2024-02-05 17:08:26 -06:00
"rimraf": "^5.0.5",
2024-01-22 09:16:07 -06:00
"source-map-loader": "4.0.1",
"source-map-support": "0.5.19",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
2024-02-07 10:15:07 -06:00
"webpack-node-externals": "^3.0.0",
"yaml-loader": "^0.8.0"
2024-01-22 09:16:07 -06:00
}
2024-01-26 10:40:31 -06:00
}