-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1016 Bytes
/
package.json
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
{
"name": "stock-tracker",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"apexcharts": "^3.49.0",
"axios": "^1.6.8",
"dayjs": "^1.11.10",
"pinia": "^2.1.7",
"primeflex": "^3.3.1",
"primeicons": "7.0.0",
"primevue": "^3.51.0",
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"vue3-apexcharts": "^1.5.2"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"@vue/test-utils": "^2.4.5",
"cypress": "^13.7.2",
"jsdom": "^24.0.0",
"start-server-and-test": "^2.0.3",
"vite": "^5.2.8",
"vite-plugin-vue-devtools": "^7.0.25",
"vitest": "^1.4.0"
}
}