-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
{
"name": "simplistic-todo-list-vite",
"description": "A simplistic todo list app built with Vite and React",
"private": true,
"version": "0.0.1",
"type": "module",
"homepage": "https://github.com/KevOneRedOne/Simplistic-todo-list-vite",
"repository": {
"type": "git",
"url": "https://github.com/KevOneRedOne/Simplistic-todo-list-vite.git"
},
"license": "MIT",
"author": "KevOneRedOne",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"deploy": "gh-pages -d dist --repo https://github.com/KevOneRedOne/Simplistic-todo-list-vite.git",
"preview": "vite preview",
"prepare": "husky install",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint:fix": "eslint --fix",
"lint": "eslint .",
"dev:cache": "vite --force",
"type:check": "tsc --noEmit",
"type:watch": "tsc --noEmit --watch"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^9.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"gh-pages": "^6.2.0",
"globals": "^15.11.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.8"
},
"lint-staged": {
"*.{js,css,ts,tsx,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}