-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 875 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 875 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
{
"name": "live-js",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "node .output/server/index.mjs",
"postinstall": "nuxt prepare",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write --unsafe ."
},
"dependencies": {
"@heroicons/vue": "^2.2.0",
"@nuxtjs/google-fonts": "^3.2.0",
"@tailwindcss/vite": "^4.1.12",
"@types/uuid": "^10.0.0",
"@vueuse/nuxt": "^13.8.0",
"monaco-editor": "^0.52.2",
"nuxt": "^4.0.3",
"tailwindcss": "^4.1.12",
"uuid": "^10.0.0",
"vue": "^3.5.20",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2"
}
}