-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
100 lines (100 loc) · 3.21 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
{
"name": "aepp-base",
"version": "1.0.2",
"author": "Sascha Hanse <[email protected]>",
"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": "IS_CORDOVA=true npm run build",
"build:ios": "npm run build:cordova && cordova build ios",
"build:android": "npm run build:cordova && cordova build android",
"gen:cordova-resources": "cordova-res --icon-background-source '#f7296e'",
"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",
"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/bip39": "^0.1.0",
"@aeternity/hd-wallet": "^0.2.0",
"@aeternity/ledger-app-api": "0.2.1",
"@download/blockies": "^1.0.3",
"@ledgerhq/hw-transport-webusb": "^6.24.1",
"@zxing/library": "^0.19.1",
"bignumber.js": "^9.0.2",
"bluebird": "^3.7.2",
"copy-to-clipboard": "^3.3.1",
"emoji-datasource-apple": "^7.0.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.5.2",
"rxjs-etc": "^10.6.2",
"socket.io-client": "^2.4.0",
"swagger-client": "^3.18.4",
"vee-validate": "^2.2.15",
"vue": "^2.6.14",
"vue-clickaway": "^2.2.2",
"vue-focus": "^2.1.0",
"vue-hoc": "^0.4.7",
"vue-i18n": "^8.27.0",
"vue-router": "^3.5.3",
"vue-rx": "^6.2.0",
"vuex": "3.3.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^1.2.0",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-e2e-cypress": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-pwa": "^4.5.15",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/test-utils": "^1.3.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.6",
"cordova": "^11.0.0",
"cordova-android": "^10.1.1",
"cordova-ios": "^6.2.0",
"cordova-res": "^0.15.4",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.4.0",
"eslint-plugin-vuejs-accessibility": "^1.1.1",
"jest-canvas-mock": "^2.3.1",
"sass": "^1.49.0",
"sass-loader": "^10.2.1",
"serve": "^13.0.2",
"svg-url-loader": "^7.1.1",
"svgo": "^2.8.0",
"svgo-loader": "^3.0.0",
"vue-cli-plugin-i18n": "^2.3.1",
"vue-i18n-extract": "1.0.3",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.14"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"sideEffects": [
"./src/lib/setGlobalPolyfills.js",
"./src/lib/initEnv.js",
"./src/lib/storeErrorHandler.js",
"./src/lib/switchWebmanifest.js",
"./src/store/index.js",
"./src/ui-common.js",
"*.css",
"*.scss",
"*.vue"
]
}