-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (94 loc) · 4.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "huds-pad",
"version": "2.5.5",
"private": true,
"homepage": "https://github.com/rse/huds-pad",
"description": "Head-Up-Display Server (HUDS) Pad",
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rse/huds-pad"
},
"browser": "index.html",
"main": "index.html",
"dependencies": {
"vue": "3.5.7",
"vue-tippy": "6.4.4",
"vue-i18n": "10.0.1",
"tippy.js": "6.3.7",
"js-yaml": "4.1.0",
"mqtt": "5.10.1",
"pure-uuid": "1.8.1",
"urijs": "1.19.11",
"qrcode": "1.5.4",
"animejs": "3.2.2",
"eventemitter2": "6.4.9",
"object-path": "0.11.8",
"fontfaceobserver": "2.3.0",
"@fortawesome/fontawesome-free": "6.6.0",
"typopro-web": "4.2.7",
"arktype": "2.0.0-rc.12",
"merge-options": "3.0.4",
"@types/urijs": "1.19.25",
"@types/animejs": "3.1.12",
"@types/qrcode": "1.5.5",
"@types/js-yaml": "4.0.9",
"@types/fontfaceobserver": "2.1.3",
"@types/object-path": "0.11.4"
},
"devDependencies": {
"eslint": "8.57.0",
"@typescript-eslint/parser": "7.13.1",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@vue/eslint-config-typescript": "13.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-vue": "9.28.0",
"stylelint": "16.9.0",
"stylelint-config-html": "1.1.0",
"stylelint-config-standard": "36.0.1",
"stylelint-config-standard-vue": "1.0.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-stylus": "1.0.0",
"htmllint": "0.7.2",
"htmllint-cli": "0.0.7",
"stmux": "1.8.10",
"npm-run-all": "4.1.5",
"nodemon": "3.1.7",
"vite": "5.4.7",
"@vitejs/plugin-vue": "5.1.4",
"@rollup/plugin-yaml": "4.1.2",
"@intlify/unplugin-vue-i18n": "5.0.0",
"vite-svg-loader": "5.1.0",
"vite-plugin-node-polyfills": "0.22.0",
"vue-tsc": "2.1.6",
"typescript": "5.6.2",
"stylus": "0.63.0",
"rimraf": "6.0.1"
},
"upd": [
"!htmllint",
"eslint",
"@typescript-eslint/parser",
"@typescript-eslint/eslint-plugin"
],
"scripts": {
"dev": "stmux -w always -m beep,system -- [ \"npm run lint:watch\" : \"npm start\" ]",
"lint:watch": "nodemon --exec \"npm run lint\" --watch . --ext html,styl,ts,vue",
"lint": "npm-run-all --print-label --silent --sequential lint:vue-tsc lint:eslint lint:stylelint lint:htmllint",
"lint:vue-tsc": "vue-tsc --project etc-tsc.json --noEmit",
"lint:eslint": "eslint --config etc-eslint.yaml --ext ts,vue *.vue *.ts",
"lint:stylelint": "stylelint --config etc-stylelint.yaml *.styl *.vue",
"lint:htmllint": "htmllint --rc etc-htmllint.json *.html",
"start": "vite --config etc-vite.mts --logLevel info --mode development",
"build": "vite --config etc-vite.mts build --logLevel info --mode production",
"preview": "vite --config etc-vite.mts preview --logLevel info",
"clean": "rimraf dist",
"clean:dist": "rimraf dist node_modules"
}
}