mirror of
https://github.com/teoxoy/factorio-blueprint-editor.git
synced 2025-01-14 02:23:21 +02:00
27 lines
1.1 KiB
JSON
27 lines
1.1 KiB
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/editor",
|
|
"packages/website"
|
|
],
|
|
"scripts": {
|
|
"start:website": "npm --workspace=@fbe/website run start",
|
|
"preview:website": "npm --workspace=@fbe/website run preview",
|
|
"start:exporter": "cd ./packages/exporter && systemfd --no-pid -s http::8888 -- cargo watch -w ./src -x \"run --features dev\"",
|
|
"build:website": "npm --workspace=@fbe/website run build",
|
|
"lint": "eslint **/*.ts --config .eslintrc.yml",
|
|
"lint:fix": "eslint **/*.ts --fix --config .eslintrc.yml",
|
|
"format": "prettier **/*.{js,ts,html,json,yml,md} --check --config .prettierrc.yml",
|
|
"format:fix": "prettier **/*.{js,ts,html,json,yml,md} --write --config .prettierrc.yml"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
"@typescript-eslint/parser": "^5.54.0",
|
|
"eslint": "^8.35.0",
|
|
"eslint-import-resolver-typescript": "^3.5.3",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"prettier": "^2.8.4",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|