-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.17 KB
/
package.json
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
{
"name": "web-template",
"version": "1.0.0",
"description": "A template for a web-app based on Vite and TypeScript.",
"keywords": [
"WebApp",
"Template",
"Vite.js",
"TypeScript"
],
"homepage": "https://github.com/Bylothink/web-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Bylothink/web-template.git"
},
"bugs": {
"url": "https://github.com/Bylothink/web-template/issues"
},
"author": {
"name": "Matteo Bilotta",
"email": "me@byloth.dev",
"url": "https://www.byloth.dev/"
},
"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.0.1",
"@eslint/compat": "^1.2.1",
"@types/node": "^20.17.0",
"husky": "^9.1.6",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"private": true,
"packageManager": "pnpm@9.12.1+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}