-
Notifications
You must be signed in to change notification settings - Fork 255
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "pwa-starter",
"version": "0.0.1",
"description": "A starter kit for building PWAs!",
"main": "index.js",
"scripts": {
"dev-server": "vite --open",
"dev": "npm run dev-server",
"dev-task": "vite",
"deploy": "npx @azure/static-web-apps-cli login --no-use-keychain && npx @azure/static-web-apps-cli deploy",
"build": "tsc && vite build",
"start": "npm run dev",
"start-remote": "vite --host"
},
"author": "",
"license": "ISC",
"dependencies": {
"@shoelace-style/shoelace": "^2.18.0",
"@thepassle/app-tools": "^0.9.12",
"lit": "^3.2.1",
"urlpattern-polyfill": "^10.0.0",
"workbox-build": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0"
},
"devDependencies": {
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-pwa": "^0.20.5"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}