-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.07 KB
/
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": "frontend",
"private": true,
"version": "1.1.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"build:docker": "grunt build:docker",
"docker-nginx": "docker run --rm --name frontend -v $PWD/dist:/usr/share/nginx/html:ro -p 3000:80 -d nginx",
"release": "grunt release",
"screenshot": "node scripts/screenshot.js"
},
"dependencies": {
"@dafcoe/vue-notification": "^0.1.6",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@vueuse/core": "^10.7.2",
"bootstrap": "^5.1.3",
"dateformat": "^5.0.3",
"pinia": "^2.0.22",
"uuid": "^9.0.0",
"vue": "^3.2.31",
"vue-router": "^4.0.12",
"vue3-drr-grid-layout": "^1.8.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.2.2",
"grunt": "^1.5.3",
"grunt-contrib-compress": "^2.0.0",
"grunt-env": "^1.0.1",
"puppeteer": "^19.5.2",
"puppeteer-screen-recorder": "^2.1.2",
"vite": "^2.9.17"
}
}