interval-timer/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

{
2023-12-17 16:53:02 +00:00
"name": "interval-timer",
"version": "0.0.1",
2023-12-17 16:53:02 +00:00
"description": "An interval timer PWA",
"main": "index.js",
"scripts": {
"build": "tsc && vite build",
"coverage": "vitest --coverage",
2023-12-17 16:53:02 +00:00
"dev": "vite",
"lint": "eslint src/**/*.ts",
"start": "npm run dev",
"start-remote": "vite --host",
"test": "vitest"
},
2023-12-17 16:53:02 +00:00
"author": "William Patrick Brawner <me@wbrawner.com>",
"license": "AGPL-3.0-only",
"dependencies": {
"@vaadin/router": "^1.7.5",
"idb": "^8.0.0",
"lit": "^3.1.3",
"workbox-build": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-precaching": "^7.0.0"
},
"devDependencies": {
"@types/dom-screen-wake-lock": "^1.0.3",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"jsdom": "^24.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-pwa": "^0.19.8",
"vitest": "^1.5.2"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"endOfLine": "crlf",
"bracketSpacing": true
}
}