-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
128 lines (128 loc) · 3.95 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
122
123
124
125
126
127
128
{
"name": "ambianic-ui",
"version": "2.23.1",
"description": "Ambianic UI is the main user interface to Ambianic Edge deployments.",
"author": "Ivelin Ivanov",
"scripts": {
"prepare": "husky install",
"serve": "vue-cli-service serve",
"build": "npx browserslist@latest --update-db && vue-cli-service build",
"lint": "vue-cli-service lint",
"pre-commit": "npm run lint",
"codecov:e2e": "codecov -f ./coverage/coverage-final.json",
"codecov:unit": "codecov -f ./coverage/jest/coverage-final.json",
"codecov": "codecov -r ./coverage/",
"coverage:merge": "cp coverage/jest/coverage-final.json coverage/jest-coverage-final.json && npx nyc merge coverage/ .nyc_output/out.json",
"coverage": "npm run coverage:merge && npx nyc report --reporter html --reporter text -t coverage --report-dir coverage/summary",
"test:unit": "jest --useStderr",
"test:e2e": "npm_config_yes=true npx browserslist@latest --update-db && npx cypress run",
"test": "npm run test:unit && npm run test:e2e && npm run coverage",
"cy:open": "npx cypress open"
},
"dependencies": {
"@vue/babel-preset-app": "^4.5.10",
"compression-webpack-plugin": "^6.1",
"dexie": "^3.0.3",
"idb": "^6.1.4",
"konva": "^8.3",
"moment": "^2.29",
"peerjs": "^1.3.2",
"register-service-worker": "^1.7.1",
"sjcl": "^1.0.8",
"update": "^0.7.4",
"vue": "^2.6.14",
"vue-clipboard2": "^0.3.3",
"vue-infinite-loading": "^2.4.5",
"vue-konva": "^2.1.7",
"vue-observe-visibility": "^1.0.0",
"vue-page-transition": "^0.2.2",
"vue-resize-directive": "^1.2.0",
"vue-router": "^3.5.3",
"vue-worker": "^1.2.1",
"vuetify": "^2.6",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@cypress/code-coverage": "^3.9.11",
"@cypress/webpack-dev-server": "^1.6.0",
"@cypress/webpack-preprocessor": "^5.10",
"@vue/cli": "^4.5.15",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-pwa": "^4.5.15",
"@vue/cli-plugin-router": "^4.5.15",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-plugin-vuex": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/test-utils": "^1.3",
"babel-plugin-istanbul": "^6.1",
"babel-plugin-transform-imports": "^2.0.0",
"cache-loader": "^4.1.0",
"codecov": "^3.8.1",
"cypress": "^9.1",
"eslint": "^7",
"eslint-plugin-cypress": "^2.12",
"eslint-plugin-import": "^2.25",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-vue": "^8.2",
"fake-indexeddb": "^3.1.7",
"flush-promises": "^1.0.2",
"fs-vacuum": "^1.2.10",
"glob-parent": ">=5.1.2",
"husky": "^7.0.2",
"istanbul-lib-coverage": "^3.0.0",
"jest": "^26",
"jest-extended": "^1.2.0",
"jest-fetch-mock": "^3.0.3",
"json-schema": ">=0.4.0",
"lodash": "^4.17.21",
"merge": ">=2.1.1",
"nyc": "^15.0.1",
"sass": "^1.42.1",
"sass-loader": "^10.2.0",
"sleep-promise": "^9.1.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-vuetify": "^2.4.5",
"vue-cli-plugin-webpack-bundle-analyzer": "~4.0.0",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.5"
},
"engines": {
"node": ">=16"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ambianic"
},
"homepage": "https://ambianic.ai",
"keywords": [
"Home Automation",
"Ambient Intelligence",
"AI",
"Business Automation",
"Workspace Automation"
],
"license": "Apache-2.0",
"nyc": {
"report-dir": "coverage",
"reporter": [
"text",
"json"
],
"extension": [
".js",
".vue"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ambianic/ambianic-ui.git"
}
}