-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1007 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
35
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"dev:be": "cd backend; yarn dev",
"dev:cy": "npx cypress open --env NUXT_MODE=development",
"run:cy": "npx cypress run --env NUXT_MODE=development",
"rec:cy": "npx cypress run --record --key 6b81c56a-4e73-4cfd-a36d-acab9f138d57 --env NUXT_MODE=development",
"clean:cy": "rm -r ./backend/public/s && rm ./backend/data/podcasts.sqlite"
},
"devDependencies": {
"@nuxtjs/color-mode": "^3.4.2",
"@nuxtjs/i18n": "^8.3.3",
"@nuxtjs/tailwindcss": "^6.12.1",
"cypress": "13.6.6",
"nuxt": "^3.12.4",
"typescript": "^5.3.3",
"vue": "^3.4.36",
"vue-router": "^4.4.3"
},
"dependencies": {
"id3-parser": "^3.0.0",
"jwt-payloader": "^1.0.1",
"nuxt-umami": "^3.1.1"
},
"resolutions": {
"string-width": "4.2.3"
}
}