generated from Byndyusoft/node-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
{
"name": "kt-web",
"version": "0.0.0-development",
"private": true,
"description": "Unofficial KinoTrend Web Version",
"homepage": "https://github.com/KillWolfVlad/kt-web#readme",
"bugs": {
"url": "https://github.com/KillWolfVlad/kt-web/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/KillWolfVlad/kt-web.git"
},
"license": "Apache-2.0",
"author": "KillWolfVlad",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"postinstall": "husky install",
"lint": "yarn run lint:eslint && yarn run lint:markdown && yarn run lint:prettier",
"lint:eslint": "eslint --ignore-path ./.gitignore --max-warnings 0 --ext ts,.tsx,.js,.jsx .",
"lint:eslint:fix": "eslint --ignore-path ./.gitignore --fix --ext ts,.tsx,.js,.jsx .",
"lint:fix": "yarn run lint:eslint:fix && yarn run lint:markdown:fix && yarn run lint:prettier:fix",
"lint:markdown": "markdownlint --ignore-path ./.gitignore \"./**/*.md\"",
"lint:markdown:fix": "markdownlint --ignore-path ./.gitignore --fix \"./**/*.md\"",
"lint:prettier": "prettier --ignore-path ./.gitignore --check \"./**/*.{ts,tsx,js,jsx,json,yaml,yml,md,html}\"",
"lint:prettier:fix": "prettier --ignore-path ./.gitignore --write \"./**/*.{ts,tsx,js,jsx,json,yaml,yml,md,html}\"",
"start": "vite dev --host"
},
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@fontsource/roboto": "5.0.8",
"@mui/icons-material": "5.14.18",
"@mui/material": "5.14.18",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
"axios": "1.6.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"use-local-storage-state": "19.1.0"
},
"devDependencies": {
"@byndyusoft/eslint-config": "2.6.0",
"@byndyusoft/tsconfig": "2.0.0",
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.16",
"@vitejs/plugin-react-swc": "3.5.0",
"eslint": "8.54.0",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"markdownlint-cli": "0.37.0",
"prettier": "3.1.0",
"prettier-plugin-packagejson": "2.4.6",
"typescript": "5.3.2",
"vite": "4.5.0",
"vite-plugin-pwa": "0.17.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}