forked from ttu-ttu/ebook-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "ttu-reader",
"version": "2.0.0",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"dev": "cd apps/web && pnpm dev",
"build": "cd apps/web && pnpm build",
"prepare": "husky",
"check": "eslint --fix-dry-run .",
"check:pretty": "prettier --debug-check .",
"lint": "eslint --fix .",
"format": "prettier --write ."
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/compat": "1.2.0",
"@eslint/js": "9.12.0",
"@types/eslint__js": "8.42.3",
"@types/node": "20.16.10",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-headers": "1.1.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-rxjs": "5.0.3",
"eslint-plugin-svelte": "2.44.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"prettier-plugin-svelte": "3.2.7",
"prettier-plugin-tailwindcss": "0.6.8",
"svelte": "4.2.19",
"svelte-eslint-parser": "0.41.1",
"typescript": "5.6.2",
"typescript-eslint": "8.8.0"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,html,scss,yml,yaml}": "prettier --write"
}
}