-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
{
"private": true,
"name": "Vite TailwindCSS Vanilla JS",
"author": {
"name": "Kovalenko Andrii",
"email": "hkovalenko9@gmail.com",
"url": "https://www.upwork.com/freelancers/akovalenko"
},
"repository": {
"type": "git",
"url": "https://github.com/MrHidalgo/VanillaJavaScript"
},
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "npx eslint --ext js ./src",
"lint:fix": "npx eslint --ext js ./src --fix"
},
"devDependencies": {
"@vitejs/plugin-legacy": "^6.0.2",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-unicorn": "^55.0.0",
"glob": "^11.0.1",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"sass": "^1.85.1",
"tailwindcss": "^4.0.12",
"vite": "^6.2.1",
"vite-plugin-static-copy": "^2.3.0"
},
"dependencies": {
"@tailwindcss/postcss": "^4.0.12",
"@tailwindcss/vite": "^4.0.12"
}
}