-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "esp32_partitions",
"version": "1.2.7",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build",
"preview": "vite preview",
"build-only": "vite build",
"typecheck": "vue-tsc --build --force",
"test": "npm-run-all2 typecheck test:unit test:e2e test:visual",
"test:unit": "vitest run",
"test:e2e": "playwright test tests/e2e",
"test:visual": "playwright test tests/visual",
"test:visual:update": "playwright test tests/visual --update-snapshots"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@vue/devtools-api": "^8.1.5",
"pinia": "^4.0.2",
"vue": "^3.4.21",
"vue-router": "^5.1.0",
"vuetify": "^4.1.2"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^26.0.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.9.1",
"npm-run-all2": "^8.0.4",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.9",
"vue-tsc": "^3.0.7"
}
}