-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "typescript-vite-starter",
"private": false,
"version": "1.0.0",
"type": "module",
"description": "Modern TypeScript & Vite starter template with comprehensive tooling for production-ready frontend development.",
"keywords": [
"typescript",
"vite",
"starter",
"template",
"frontend",
"vitest",
"eslint",
"prettier",
"scss",
"modern"
],
"repository": {
"type": "git",
"url": "https://github.com/Eoic/TypescriptViteTemplate.git"
},
"bugs": {
"url": "https://github.com/Eoic/TypescriptViteTemplate/issues"
},
"homepage": "https://github.com/Eoic/TypescriptViteTemplate#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"format": "prettier --write \"src/**/*.{ts,tsx,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,scss,md}\"",
"ci": "npm run type-check && npm run lint && npm run test && npm run build",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.1.1",
"@stylistic/eslint-plugin": "^5.2.2",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.2.0",
"husky": "^9.1.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.3.0",
"sass": "^1.77.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.0",
"vitest": "^2.0.0"
}
}