-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev --port 3000 --host 0.0.0.0 --dotenv .env.local",
"generate": "nuxi generate",
"postinstall": "nuxi prepare",
"start": "node .output/server/index.mjs",
"start:generate": "npx serve .output/public",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.2",
"@element-plus/nuxt": "^1.0.8",
"@iconify-json/carbon": "^1.1.31",
"@nuxt/eslint": "^0.3.4",
"@nuxtjs/color-mode": "^3.3.3",
"@nuxtjs/device": "^3.1.1",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"@pinia/nuxt": "^0.5.1",
"@types/crypto-js": "^4.2.2",
"@types/jsonwebtoken": "^9.0.6",
"@unocss/eslint-config": "^0.59.0",
"@unocss/nuxt": "^0.59.0",
"@vueuse/nuxt": "^10.9.0",
"consola": "^3.2.3",
"element-plus": "^2.6.3",
"eslint": "^8.57.0",
"eslint-plugin-format": "^0.1.0",
"nuxt": "^3.11.2",
"pinia": "^2.1.7",
"typescript": "^5.4.4",
"vue-tsc": "^2.0.11"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.1",
"@nuxt/ui": "^2.15.1",
"aws-sdk": "^2.1596.0",
"crypto-js": "^4.2.0",
"exifreader": "^4.22.1",
"jsonwebtoken": "^9.0.2",
"postgres": "^3.4.4",
"vue-waterfall-plugin-next": "^2.4.3"
}
}