-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 KB
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
47
48
49
50
51
52
53
54
{
"name": "studytimer.io",
"private": true,
"version": "0.2.1",
"type": "module",
"engines": {
"node": ">=22",
"npm": ">=10.9.3",
"yarn": ">=1.22.22",
"pnpm": "please use npm or yarn"
},
"description": "Online pomodoro focus timer.",
"scripts": {
"dev": "vite --port 3005",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext js --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"flf": "npm run format && npm run lint:fix",
"test": "vitest --run",
"changeset": "npx @changesets/cli",
"changeset:version": "npx @changesets/cli version",
"prepare": "husky"
},
"author": "Bryson Ward",
"license": "Apache-2.0",
"dependencies": {
"@lit-labs/router": "^0.1.4",
"lit": "^3.3.2",
"urlpattern-polyfill": "^10.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.2.0",
"eslint-plugin-lit": "^2.1.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"prettier-eslint": "^16.4.2",
"terser": "^5.46.0",
"vite": "^7.3.1",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^4.0.17"
}
}