-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 905 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
{
"name": "arsa-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"docker": "docker build --no-cache -t arsa-frontend .",
"docker-run": "docker run -d --rm -p 80:80 --name arsa-frontend arsa-frontend"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"ajv-keywords": "^5.1.0",
"fluent-json-schema": "^5.0.0",
"is-ip": "^5.0.1",
"pinia": "^2.2.2",
"uuid": "^10.0.0",
"vue": "^3.4.37",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"@vitejs/plugin-vue": "^5.1.2",
"typescript": "^5.5.3",
"vite": "^5.4.1",
"vue-tsc": "^2.0.29"
}
}