mirror of
https://github.com/teoxoy/factorio-blueprint-editor.git
synced 2024-11-24 08:22:16 +02:00
52e87cace0
remove old start script
27 lines
1.1 KiB
JSON
27 lines
1.1 KiB
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"start:website": "yarn workspace @fbe/website run start",
|
|
"start:exporter": "cd ./packages/exporter && systemfd --no-pid -s http::8888 -- cargo watch -w ./src -x \"run --features dev\"",
|
|
"build:website": "yarn workspace @fbe/website run build",
|
|
"lint": "eslint **/*.ts --config .eslintrc.yml --ignore-path .gitignore",
|
|
"lint:fix": "eslint **/*.ts --fix --config .eslintrc.yml --ignore-path .gitignore",
|
|
"format": "prettier **/*.{js,ts,html,json,yml,md} --check --config .prettierrc.yml --ignore-path .gitignore",
|
|
"format:fix": "prettier **/*.{js,ts,html,json,yml,md} --write --config .prettierrc.yml --ignore-path .gitignore"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.9.1",
|
|
"@typescript-eslint/parser": "^4.9.1",
|
|
"concurrently": "^5.2.0",
|
|
"eslint": "^7.15.0",
|
|
"eslint-config-prettier": "^7.0.0",
|
|
"eslint-import-resolver-typescript": "^2.3.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"prettier": "^2.0.5",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|