-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 828 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 828 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
30
31
32
33
34
35
{
"name": "sharefile",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"dev:dual": "node server.js",
"start": "node server.prod.js",
"start:dual": "node server.prod.js",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"bcrypt": "^6.0.0",
"formidable": "^3.5.2",
"http-proxy": "^1.18.1",
"nuxt": "^3.14.0",
"pg": "^8.13.0",
"qrcode": "^1.5.4",
"uuid": "^11.0.0",
"vue": "^3.5.0",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.0",
"@nuxt/icon": "^1.8.0",
"@types/bcrypt": "^5.0.2",
"@types/formidable": "^3.4.5",
"@types/pg": "^8.11.0",
"@types/uuid": "^10.0.0"
}
}