-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 800 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
{
"name": "bordmonitor",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"format": "prettier -w .",
"generate": "nuxt generate",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"preview": "nuxt preview",
"docker:build": "docker build -t fortnet-dev/bordmonitor .",
"docker:run": "./docker/run.sh"
},
"dependencies": {
"@acab/reset.css": "^0.11.0",
"@fontsource-variable/jetbrains-mono": "^5.1.2",
"@vueuse/core": "^12.5.0",
"@vueuse/nuxt": "^12.5.0",
"nuxt": "^3.15.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@nuxt/eslint": "^0.7.5",
"eslint-plugin-unicorn": "^56.0.1",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.4"
}
}