-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 939 Bytes
/
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
45
46
{
"name": "tghandbook",
"version": "1.0.0",
"main": "index.js",
"license": "ISC",
"type": "module",
"scripts": {
"start": "vite",
"lint": "eslint src",
"build": "vite build --base=./"
},
"dependencies": {},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions"
],
"engines": {
"node": ">=20.0.0"
},
"cache": {
"strategy": "default",
"runtimeCaching": [
{
"urlPattern": [
"i",
""
],
"handler": "cacheFirst"
}
]
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/service_worker_api": "^0.0.9",
"prettier": "^3.2.5",
"sass": "^1.75.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-pwa": "^0.19.8",
"@eslint/js": "^9.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"typescript-eslint": "^7.7.0"
}
}