-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 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
{
"name": "running-tools",
"version": "1.5.0",
"description": "A collection of tools for runners and their coaches that calculate splits, predict race times, convert units, and more",
"repository": {
"type": "git",
"url": "git+https://git.ashermorgan.net/running-tools/"
},
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"lint": "eslint . --fix",
"test:unit": "vitest",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --build"
},
"dependencies": {
"feather-icons": "^4.29.2",
"vue": "^3.5.17",
"vue-feather": "^2.0.0",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@playwright/test": "^1.53.1",
"@tsconfig/node22": "^22.0.2",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.0.7",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/eslint-config-typescript": "^14.5.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.22.0",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-vue": "^10.2.0",
"jsdom": "^26.1.0",
"markdown-it": "^14.1.0",
"npm-run-all2": "^8.0.4",
"pwa-asset-generator": "^8.0.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.10"
}
}