forked from ttu-ttu/ebook-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"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 install",
"check": "eslint --fix-dry-run .",
"lint": "eslint --fix .",
"format": "prettier --write ."
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.14.7",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-rxjs": "5.0.3",
"eslint-plugin-svelte3": "4.0.0",
"husky": "9.0.11",
"lint-staged": "15.2.7",
"prettier": "3.3.2",
"prettier-plugin-svelte": "3.2.5",
"prettier-plugin-tailwindcss": "0.6.5",
"svelte": "4.2.18",
"typescript": "5.4.5"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,html,scss,yml,yaml}": "prettier --write"
}
}