-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 839 Bytes
/
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
{
"name": "html-color-names",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"lint": "eslint src",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tsconfig/vite-react": "^1.0.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^2.2.0",
"eslint": "^8.27.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.56.1",
"typescript": "^4.8.4",
"vite": "^3.2.3"
},
"lint-staged": {
"src/**/*.{ts,tsx,scss,json,md}": [
"prettier --write"
]
}
}