2022-08-15 03:24:15 +00:00
|
|
|
{
|
|
|
|
"name": "pwa-starter",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "A starter kit for building PWAs!",
|
|
|
|
"main": "index.js",
|
2023-12-17 16:37:08 +00:00
|
|
|
"type": "module",
|
2022-08-15 03:24:15 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && vite build",
|
|
|
|
"coverage": "vitest --coverage",
|
|
|
|
"deploy": " npx @azure/static-web-apps-cli login --no-use-keychain && npx @azure/static-web-apps-cli deploy",
|
|
|
|
"dev": "npx @azure/static-web-apps-cli start http://localhost:3000 --run \"npm run dev-server\"",
|
2023-12-17 16:37:08 +00:00
|
|
|
"dev-server": "light-server -s src",
|
2022-08-15 03:24:15 +00:00
|
|
|
"dev-task": "vite",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
"start": "npm run dev",
|
|
|
|
"start-remote": "vite --host",
|
2023-12-17 16:37:08 +00:00
|
|
|
"test": "mocha"
|
2022-08-15 03:24:15 +00:00
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2023-10-18 03:37:09 +00:00
|
|
|
"@fluentui/web-components": "^2.5.16",
|
2023-10-15 22:57:53 +00:00
|
|
|
"@vaadin/router": "^1.7.5",
|
2023-10-16 14:01:00 +00:00
|
|
|
"idb": "^7.1.1",
|
2023-12-17 16:37:08 +00:00
|
|
|
"light-server": "^2.9.1",
|
2023-11-20 13:32:14 +00:00
|
|
|
"lit": "^3.1.0",
|
2023-12-17 16:37:08 +00:00
|
|
|
"ts-to-jsdoc": "^1.5.0",
|
2023-10-16 13:09:34 +00:00
|
|
|
"workbox-build": "^7.0.0",
|
2023-10-16 13:17:46 +00:00
|
|
|
"workbox-core": "^7.0.0",
|
2023-10-15 22:56:20 +00:00
|
|
|
"workbox-precaching": "^7.0.0"
|
2022-08-15 03:24:15 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-11-13 13:18:20 +00:00
|
|
|
"@types/dom-screen-wake-lock": "^1.0.3",
|
2023-11-27 13:57:08 +00:00
|
|
|
"@types/node": "^20.10.0",
|
2023-11-27 13:54:28 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
2023-11-20 13:29:31 +00:00
|
|
|
"@typescript-eslint/parser": "^6.11.0",
|
2023-10-15 23:02:37 +00:00
|
|
|
"c8": "^8.0.1",
|
2023-11-20 13:30:51 +00:00
|
|
|
"eslint": "^8.54.0",
|
2023-11-27 13:58:35 +00:00
|
|
|
"jsdom": "^23.0.0",
|
2023-12-17 16:37:08 +00:00
|
|
|
"mocha": "^10.2.0",
|
2023-11-27 14:00:12 +00:00
|
|
|
"typescript": "^5.3.2",
|
2023-10-23 13:33:28 +00:00
|
|
|
"vite": "^4.5.0",
|
2023-11-27 13:55:49 +00:00
|
|
|
"vite-plugin-pwa": "^0.17.2",
|
2023-10-16 13:58:33 +00:00
|
|
|
"vitest": "^0.34.6"
|
2022-08-15 03:24:15 +00:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"tabWidth": 2,
|
|
|
|
"useTabs": false,
|
|
|
|
"semi": true,
|
|
|
|
"singleQuote": true,
|
|
|
|
"quoteProps": "consistent",
|
|
|
|
"trailingComma": "es5",
|
|
|
|
"endOfLine": "crlf",
|
|
|
|
"bracketSpacing": true
|
|
|
|
}
|
|
|
|
}
|