-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.8 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
{
"name": "zetrix-didcomm-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"build:test": "NODE_ENV=production vue-cli-service build --mode test --modern",
"test:unit": "cross-env VUE_APP_TEST=unit vue-cli-service test:unit",
"test:e2e": "cross-env VUE_APP_TEST=e2e vue-cli-service test:e2e --headless",
"lint": "run-s lint:all:*",
"build:ci": "yarn build --report",
"dev": "vue-cli-service serve",
"dev:e2e": "cross-env VUE_APP_TEST=e2e vue-cli-service test:e2e --mode=development",
"docker": "docker-compose exec dev yarn",
"docs": "vuepress dev",
"lint:all:eslint": "yarn lint:eslint --ext .js,.vue .",
"lint:all:markdownlint": "yarn lint:markdownlint \"docs/*.md\" \"*.md\"",
"lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,css,scss,vue,html,md}\"",
"lint:all:stylelint": "yarn lint:stylelint \"src/**/*.{vue,scss}\"",
"lint:eslint": "eslint --fix",
"lint:markdownlint": "markdownlint",
"lint:prettier": "prettier --write --loglevel warn",
"lint:stylelint": "stylelint --fix",
"new": "cross-env HYGEN_TMPLS=generators hygen new",
"test": "run-s test:unit test:e2e",
"test:ci": "run-s test:unit:ci test:e2e",
"test:unit:ci": "yarn test:unit --coverage --ci",
"test:unit:file": "yarn test:unit --bail --findRelatedTests",
"test:unit:watch": "yarn test:unit --watch --notify --notifyMode change",
"sonar": "sonar-scanner"
},
"dependencies": {
"@mdi/font": "5.9.55",
"axios": "0.21.1",
"base-x": "^5.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"futoin-hkdf": "^1.5.3",
"lodash": "4.17.15",
"process": "^0.11.10",
"roboto-fontface": "*",
"sockjs-client": "^1.6.1",
"stream-browserify": "^3.0.0",
"tweetnacl": "^1.0.3",
"uuid": "^11.0.3",
"vm-browserify": "^1.1.2",
"vue": "^3.2.13",
"vue-router": "^4.0.3",
"vuetify": "^3.6.5",
"vuex": "^4.0.0",
"webfontloader": "^1.0.0",
"webstomp-client": "^1.2.6",
"zetrix-connect-wallet-sdk": "1.1.3",
"zetrix-encryption-nodejs": "^1.0.0"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.0.3",
"prettier": "^2.4.1",
"sass": "^1.77.2",
"sass-loader": "^12.6.0",
"vue-cli-plugin-vuetify": "~2.5.8",
"webpack-plugin-vuetify": "^2.0.0-alpha.0"
},
"engines": {
"node": ">=10.13.3",
"yarn": ">=1.0.0"
},
"resolutions": {
"@vue/cli-plugin-unit-jest/jest": "25.1.x",
"@vue/cli-plugin-unit-jest/babel-jest": "25.1.x"
}
}