-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 980 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 980 Bytes
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
{
"name": "project-koushol",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tailwindcss": "^2.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"stylelint --fix",
"prettier --write"
]
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^2.0.0",
"stylelint": "^14.0.0",
"stylelint-config-tailwindcss": "^1.0.0",
"typescript": "^4.0.0",
"vite": "^3.0.0"
}
}