-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
56 lines (56 loc) · 1.71 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "pixi-devtools-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "pnpm --parallel dev",
"build": "pnpm --parallel build",
"lint": "concurrently -c \"#c596c7\",\"#4b32c3\",\"#676778\" --kill-others-on-fail \"npm:lint:*\"",
"lint:prettier": "prettier --check . \"{app,packages}/**/*.svelte\"",
"lint:eslint": "eslint --max-warnings=0 .",
"lint:svelte-check": "svelte-check --fail-on-warnings",
"format": "eslint --fix . && prettier --write . \"{app,packages}/**/*.svelte\"",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky || true"
},
"lint-staged": {
"*.(ts|tsx|svelte)": [
"eslint --max-warnings 0 --no-ignore",
"svelte-check --fail-on-warnings"
],
"*.(js|cjs|mjs|jsx)": [
"eslint --max-warnings 0 --no-ignore"
],
"*.(json|css|md)": [
"prettier --check --loglevel=warn"
]
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"@types/chrome": "^0.0.287",
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^22.10.0",
"concurrently": "^9.1.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-svelte": "^2.46.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5.2.9",
"svelte-check": "^4.1.0",
"svelte-eslint-parser": "^0.43.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}