-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
20 lines (20 loc) · 912 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "procchi",
"version": "0.2.0",
"scripts": {
"start:bun": "cd ./frontend && bun run build && cd ../backend && cargo run -- -u test -k test",
"start": "cd ./frontend && npm run build && cd ../backend && cargo run -- -u test -k test",
"build:bun": "cd ./frontend && bun run build && cd ../backend && cargo build --release",
"build": "cd ./frontend && npm run build && cd ../backend && cargo build --release",
"clippy:fix": "cargo clippy --manifest-path ./backend/Cargo.toml --all --allow-dirty --fix",
"fmt:fix": "cargo fmt --manifest-path ./backend/Cargo.toml --all",
"lint": "cd ./frontend && eslint ./src/**/*.tsx",
"lint:fix": "cd ./frontend && eslint --fix ./src/**/*.tsx"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-preact": "^1.3.0"
}
}