-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "micro-url-project",
"version": "0.1.0",
"type": "module",
"private": true,
"workspaces": [
"js/*"
],
"scripts": {
"build-server": "cargo build -p server --release",
"build-cli": "cargo build -p cli --release",
"build-frontend": "pnpm --filter frontend build",
"build": "pnpm run build-server && pnpm run build-cli && pnpm run build-frontend",
"run": "shuttle run",
"lint": "eslint . && prettier --check . && cargo clippy --all-targets --all-features -- -D warnings && cargo fmt --all -- --check && cargo clippy --all-targets --all-features -- -D warnings",
"lint-ci": "eslint . --max-warnings 0",
"format": "eslint . --fix && prettier --write . && cargo fmt --all && cargo clippy --all-targets --all-features --fix -- -D warnings"
},
"engines": {
"node": ">=22.14.0",
"pnpm": "^10.7.1"
},
"packageManager": "pnpm@10.8.0",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@monodon/rust": "2.3.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.21.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.13",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
}
}