-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 796 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 796 Bytes
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
{
"name": "siw",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"cy:open-e2e": "cypress open --e2e --browser chrome",
"cy:open-unit": "cypress open --component --browser chrome",
"cy:run-e2e": "cypress run --e2e",
"cy:run-unit": "cypress run --component",
"test": "start-server-and-test dev http-get://localhost:5173 cy:run-e2e"
},
"dependencies": {
"@saferinsulin/core": "^2.0.1",
"fomantic-ui-css": "^2.9.3",
"vue": "^3.4.21",
"vue-fomantic-ui": "^0.26.2"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"cypress": "^13.9.0",
"start-server-and-test": "^2.0.3",
"vite": "^5.2.0",
"vite-plugin-pwa": "^0.20.0"
}
}