-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.79 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
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@fastybird/miniserver",
"version": "1.0.0",
"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": "code@fastybird.com",
"url": "https://www.fastybird.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/FastyBird/interface.git"
},
"scripts": {
"dev": "vite --host",
"build:dev": "vue-tsc --noEmit && vite build --watch --mode development",
"build:prod": "vue-tsc --noEmit && vite build",
"preview": "vue-tsc --noEmit && vite build && vite preview --host",
"types": "vue-tsc --noEmit",
"lint:js": "eslint --ext .js,.ts,.vue --ignore-path .gitignore assets",
"lint:js:fix": "eslint --ext .js,.ts,.vue --ignore-path .gitignore assets --fix",
"lint:styles": "stylelint 'assets/**/*.scss'",
"pretty": "prettier assets --write && prettier assets --check",
"pretty:check": "prettier assets --check",
"pretty:write": "prettier assets --write"
},
"dependencies": {
"@fastybird/accounts-module": "1.0.0-dev.19",
"@fastybird/devices-module": "1.0.0-dev.19",
"@fastybird/metadata-library": "1.0.0-dev.19",
"@fastybird/triggers-module": "1.0.0-dev.19",
"@fastybird/vue-wamp-v1": "^1.2",
"@fastybird/web-ui-library": "1.0.0-dev.19",
"@fortawesome/fontawesome-svg-core": "^6.2",
"@fortawesome/free-brands-svg-icons": "^6.2",
"@fortawesome/free-solid-svg-icons": "^6.2",
"@fortawesome/vue-fontawesome": "^3.0",
"@sentry/tracing": "^7.20",
"@sentry/vue": "^7.20",
"@vueuse/core": "^9.5",
"axios": "^1.1",
"jsona": "^1.11",
"lodash.get": "^4.4",
"md5": "^2.3",
"mitt": "^3.0",
"normalize.css": "^8.0",
"nprogress": "^0.2",
"pinia": "^2.0",
"vee-validate": "^4.7",
"vue": "^3.2",
"vue-i18n": "^9.2",
"vue-meta": "^3.0.0-alpha.8",
"vue-router": "^4.1",
"vue-toastification": "^2.0.0-rc.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.20",
"@babel/plugin-proposal-class-properties": "^7.18",
"@babel/preset-env": "^7.20",
"@babel/preset-typescript": "^7.18",
"@commitlint/cli": "^17.2",
"@commitlint/config-conventional": "^17.2",
"@intlify/vite-plugin-vue-i18n": "^6.0",
"@types/lodash.get": "^4.4",
"@types/md5": "^2.3",
"@types/node": "^18.11",
"@types/nprogress": "^0.2",
"@typescript-eslint/eslint-plugin": "^5.42",
"@typescript-eslint/parser": "^5.42",
"@vitejs/plugin-vue": "^3.2",
"@vue/eslint-config-prettier": "^7.0",
"@vue/eslint-config-typescript": "^11.0",
"babel-loader": "^8.2",
"cross-env": "^7.0",
"dotenv": "^16.0",
"eslint": "^8.27",
"eslint-config-prettier": "^8.5",
"eslint-plugin-json": "^3.1",
"eslint-plugin-markdown": "^3.0",
"eslint-plugin-prettier": "^4.2",
"eslint-plugin-vue": "^9.7",
"minimist": "^1.2",
"postcss": "^8.4",
"postcss-scss": "^4.0",
"prettier": "^2.7",
"rimraf": "^3.0",
"sass": "^1.56",
"sass-loader": "^13.1",
"stylelint": "^14.14",
"stylelint-config-prettier": "^9.0",
"stylelint-config-recommended-vue": "^1.4",
"stylelint-config-standard": "^29.0",
"stylelint-config-standard-scss": "^6.1",
"stylelint-order": "^5.0",
"stylelint-prettier": "^2.0",
"typescript": "^4.8",
"vconsole": "^3.15.0",
"vite": "^3.2",
"vite-plugin-eslint": "^1.8",
"vite-plugin-vconsole": "^1.3.1",
"vite-plugin-vue-type-imports": "^0.2",
"vite-svg-loader": "^3.6",
"vue-loader": "^17.0",
"vue-tsc": "^1.0"
},
"engines": {
"node": ">=16"
}
}