forked from ambianic/ambianic-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.16 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
{
"name": "ambianic-ui",
"version": "2.6.0",
"description": "Ambianic UI is the main user interface to Ambianic Edge deployments.",
"author": "Ivelin Ivanov",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"codecov:e2e": "codecov -f ./coverage/coverage-final.json",
"codecov:unit": "codecov -f ./coverage/jest/coverage-final.json",
"codecov": "codecov -f coverage/coverage-final.json && codecov -f coverage/jest/coverage-final.json",
"test:unit": "jest",
"test:e2e": "npx cypress run",
"test": "npm run test:unit && npm run test:e2e"
},
"dependencies": {
"codecov": "^3.7.0",
"compression-webpack-plugin": "^4.0.0",
"idb": "^5.0.3",
"konva": "^4.2.2",
"moment": "^2.26.0",
"node": "^14.2.0",
"peerjs": "^1.1.0",
"register-service-worker": "^1.7.1",
"vue": "^2.5.16",
"vue-infinite-loading": "^2.4.5",
"vue-konva": "^2.1.3",
"vue-page-transition": "^0.2.2",
"vue-resize-directive": "^1.2.0",
"vue-router": "^3.2.0",
"vue-worker": "^1.2.1",
"vuetify": "^2.2.29",
"vuex": "^3.4.0"
},
"devDependencies": {
"fs-vacuum": "^1.2.10",
"@cypress/code-coverage": "^3.7.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.6",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-pwa": "^4.3.1",
"@vue/cli-plugin-router": "^4.2.3",
"@vue/cli-plugin-unit-jest": "^4.4.1",
"@vue/cli-plugin-vuex": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"cypress": "^4.5.0",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"istanbul-lib-coverage": "^3.0.0",
"jest": "^26.0.1",
"nyc": "^15.0.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.0",
"semantic-release": "^17.0.4",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-vuetify": "^2.0.5",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.1"
},
"engines": {
"node": ">=12.10.0"
},
"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"
}
}