-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.49 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@chandra/vite-ts-preact-tailwind-template",
"version": "0.0.1",
"license": "MIT",
"author": "chandra",
"type": "module",
"engines": {
"node": ">=18.7.0",
"npm": ">=7.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/chandrakumarreddy/vite-ts-preact-tailwind-template"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"lint:format": "prettier --cache --check .",
"lint": "yarn lint:script && yarn lint:style",
"lint:script": "eslint --ext .ts,tsx --ignore-path .gitignore .",
"lint:style": "stylelint src/**/*.{css,scss}",
"tsc:check": "tsc"
},
"dependencies": {
"preact": "^10.4.1"
},
"devDependencies": {
"@prefresh/vite": "^1.2.1",
"@typescript-eslint/parser": "^5.38.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"stylelint": "^14.12.1",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^28.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3",
"vite": "^1.0.0-rc.13"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{css,scss}": "stylelint --fix",
"*": "prettier -w -u"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}