-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 968 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
{
"name": "supplier",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"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'",
"test:unit": "cypress run --component",
"test:unit:dev": "cypress open --component"
},
"dependencies": {
"@rollup/wasm-node": "^4.22.4",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"axios": "^1.7.7",
"leaflet": "^1.9.4",
"pinia": "^2.2.2",
"timeago": "^1.6.7",
"timeago.js": "^4.0.2",
"vite-plugin-pwa": "^0.20.5",
"vue": "^3.4.29",
"vue-leaflet": "^0.1.0",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"cypress": "^13.12.0",
"start-server-and-test": "^2.0.4",
"vite": "^5.3.1"
}
}