-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.38 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
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@fastybird/application",
"version": "1.0.0-dev.24",
"type": "module",
"description": "FastyBird IoT application user interface",
"keywords": [
"fastybird",
"fb",
"ui",
"interface",
"vue"
],
"homepage": "https://www.fastybird.com",
"bugs": "https://github.com/FastyBird/fastybird/issues",
"license": "Apache-2.0",
"author": {
"name": "FastyBird s.r.o.",
"email": "[email protected]",
"url": "https://www.fastybird.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/FastyBird/interface.git"
},
"scripts": {
"clean": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"build": "yarn clean && vue-tsc --noEmit --composite false && vite build",
"build:dev": "vue-tsc --noEmit --composite false && vite build --watch --mode development",
"build:only": "yarn clean && vite build",
"types": "vue-tsc --noEmit --composite false",
"lint:js": "eslint assets",
"lint:js:fix": "eslint assets --fix",
"pretty": "yarn pretty:write && yarn pretty:check",
"pretty:check": "prettier assets --check",
"pretty:write": "prettier assets --write",
"dev": "vite --host",
"preview": "vue-tsc --noEmit && vite build && vite preview --host"
},
"dependencies": {
"@fastybird/metadata-library": "1.0.0-dev.24",
"@fastybird/tools": "1.0.0-dev.24",
"@fastybird/vue-wamp-v1": "^1.2",
"@fastybird/web-ui-icons": "1.0.0-dev.24",
"@fastybird/web-ui-library": "1.0.0-dev.24",
"@iconify/iconify": "^3.1",
"@iconify/vue": "^4.1",
"element-plus": "^2.8",
"lodash.get": "^4.4",
"md5": "^2.3",
"nprogress": "^0.2",
"pinia": "^2.2",
"unocss": "^0.64",
"vue": "^3.5",
"vue-i18n": "^10.0",
"vue-meta": "^3.0.0-alpha.10",
"vue-router": "^4.4"
},
"devDependencies": {
"@commitlint/cli": "^19.6",
"@commitlint/config-conventional": "^19.6",
"@eslint/js": "^9.15",
"@intlify/unplugin-vue-i18n": "^6.0",
"@nabla/vite-plugin-eslint": "^2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3",
"@types/lodash.get": "^4.4",
"@types/md5": "^2.3",
"@types/node": "^20.17",
"@types/nprogress": "^0.2",
"@typescript-eslint/eslint-plugin": "^8.15",
"@typescript-eslint/parser": "^8.15",
"@unocss/transformer-variant-group": "^0.64",
"@vitejs/plugin-vue": "^5.2",
"@vue/eslint-config-prettier": "^10.1",
"@vue/eslint-config-typescript": "^14.1",
"babel-loader": "^9.2",
"cross-env": "^7.0",
"dotenv": "^16.4",
"eslint": "^9.15",
"eslint-config-prettier": "^9.1",
"eslint-plugin-prettier": "^5.2",
"eslint-plugin-vue": "^9.31",
"minimist": "^1.2",
"postcss": "^8.4",
"postcss-scss": "^4.0",
"prettier": "^3.3",
"rimraf": "^6.0",
"sass": "^1.81",
"sass-loader": "^16.0",
"stylelint": "^16.10",
"stylelint-config-prettier": "^9.0",
"stylelint-config-recommended-vue": "^1.5",
"stylelint-config-standard": "^36.0",
"stylelint-config-standard-scss": "^13.1",
"stylelint-order": "^6.0",
"stylelint-prettier": "^5.0",
"typescript": "5.6.2",
"typescript-eslint": "^8.15",
"vconsole": "^3.15",
"vite": "^5.4",
"vite-plugin-eslint": "^1.8",
"vite-plugin-vconsole": "^2.1",
"vite-plugin-vue-type-imports": "^0.2",
"vite-svg-loader": "^5.1",
"vue-loader": "^17.4",
"vue-tsc": "^2.1"
},
"engines": {
"node": ">=20"
}
}