-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "@its-incom/typescript-web-template",
"version": "1.1.0",
"description": "A template for a web-app based on Vite and TypeScript.",
"keywords": [
"WebApp",
"Template",
"Vite.js",
"TypeScript"
],
"homepage": "https://github.com/ITSIncom/typescript-web-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ITSIncom/typescript-web-template.git"
},
"bugs": {
"url": "https://github.com/ITSIncom/typescript-web-template/issues"
},
"author": {
"name": "Matteo Bilotta",
"email": "matteo.bilotta@itsincom.it",
"url": "https://itsincom.it/"
},
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --build",
"lint": "eslint .",
"prepare": "husky"
},
"devDependencies": {
"@byloth/eslint-config-typescript": "^3.2.2",
"@eslint/compat": "^2.0.2",
"@types/node": "^22.19.11",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"private": true
}