-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
107 lines (107 loc) · 3.48 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
{
"name": "aepp-base",
"version": "1.2.0",
"author": "Sascha Hanse <shanse@posteo.de>",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"serve:android": "npm run build:cordova && cordova run android",
"serve:ios": "npm run build:cordova && cordova run ios",
"build": "vue-cli-service build",
"build:cordova": "VUE_APP_CORDOVA=true npm run build",
"build:ios": "npm run build:cordova && cordova build ios",
"build:android": "npm run build:cordova && cordova build android",
"lint": "NODE_ENV=production vue-cli-service lint . --no-fix",
"test": "npm run lint && npm run test:unit && npm run test:e2e -- --headless",
"test:e2e": "vue-cli-service test:e2e --mode docker",
"test:unit": "vue-cli-service test:unit",
"i18n:report": "vue-i18n-extract report --vueFiles './src/**/*.?(js|vue)' --languageFiles './src/locales/**/*.json'"
},
"dependencies": {
"@aeternity/aepp-sdk": "^11.0.1",
"@aeternity/aepp-sdk-next": "npm:@aeternity/aepp-sdk@^13.3.2",
"@aeternity/bip39": "^0.1.0",
"@aeternity/hd-wallet": "^0.2.0",
"@aeternity/ledger-app-api": "^0.2.2",
"@download/blockies": "^1.0.3",
"@ledgerhq/hw-transport-webusb": "6.28.6",
"@zxing/library": "^0.21.0",
"bignumber.js": "^9.1.2",
"bluebird": "^3.7.2",
"buffer": "^6.0.3",
"copy-to-clipboard": "^3.3.3",
"emoji-datasource-apple": "^15.1.2",
"focus-visible": "^5.2.0",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"register-service-worker": "^1.7.2",
"rlp": "^3.0.0",
"rxjs": "^7.8.1",
"rxjs-etc": "^10.6.2",
"socket.io-client": "^4.7.5",
"stream-browserify": "^3.0.0",
"swagger-client": "~3.19.7",
"util": "^0.12.5",
"vee-validate": "^2.2.15",
"vue": "^2.7.16",
"vue-clickaway": "^2.2.2",
"vue-focus": "^2.1.0",
"vue-hoc": "^0.4.7",
"vue-i18n": "^8.28.2",
"vue-router": "^3.6.5",
"vue-rx": "^6.2.0",
"vuex": "3.3.0",
"vuex-router-sync": "^5.0.0",
"workbox-precaching": "^7.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.6",
"@babel/plugin-syntax-import-attributes": "^7.24.6",
"@frsource/cypress-plugin-visual-regression-diff": "^3.3.10",
"@intlify/eslint-plugin-vue-i18n": "^2.0.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-e2e-cypress": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-pwa": "^5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-airbnb": "^7.0.1",
"@vue/preload-webpack-plugin": "^2.0.0",
"@vue/test-utils": "^1.3.5",
"@vue/vue2-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"cordova": "^12.0.0",
"cordova-android": "^12.0.1",
"cordova-ios": "^7.0.1",
"cypress": "^13.10.0",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.26.0",
"eslint-plugin-vuejs-accessibility": "^2.3.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"sass": "^1.77.2",
"sass-loader": "^14.2.1",
"serve": "^14.2.3",
"svg-url-loader": "^8.0.0",
"svgo": "^3.3.2",
"svgo-loader": "^4.0.0",
"vue-cli-plugin-i18n": "^2.3.2",
"vue-i18n-extract": "2.0.7",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.94.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"sideEffects": [
"./src/lib/setGlobalPolyfills.js",
"./src/lib/storeErrorHandler.js",
"./src/store/index.js",
"./src/ui-common.js",
"*.css",
"*.scss",
"*.vue"
]
}