forked from soramitsu/adar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.82 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
{
"name": "polkaswap-exchange-web",
"version": "1.15.0",
"repository": {
"type": "git",
"url": "https://github.com/sora-xor/polkaswap-exchange-web.git"
},
"license": "Apache-2.0",
"private": true,
"author": "jihoon@tutanota.de <jihoon@tutanota.de>",
"main": "index.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"generate-lang-json": "ts-node --skip-project ./scripts/generateLocaleJson.ts",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"test:unit": "vue-cli-service test:unit --testPathIgnorePatterns Translation.spec.ts",
"test:translation": "vue-cli-service test:unit -- Translation.spec.ts",
"test:e2e": "vue-cli-service test:e2e",
"test:all": "yarn test:unit"
},
"dependencies": {
"@metamask/detect-provider": "^2.0.0",
"@soramitsu/soraneo-wallet-web": "1.15.4",
"@walletconnect/web3-provider": "^1.8.0",
"base-64": "^1.0.0",
"core-js": "^3.26.0",
"country-code-emoji": "^2.3.0",
"direct-vuex": "^0.12.1",
"echarts": "^5.4.1",
"email-validator": "^2.0.4",
"ethers": "^5.7.2",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.28",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"papaparse": "^5.3.2",
"uuidv4": "^6.2.13",
"vue": "2.6.14",
"vue-class-component": "^7.2.6",
"vue-echarts": "^6.3.3",
"vue-i18n": "^8.11.2",
"vue-plugin-load-script": "^2.x.x",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.6.5",
"vuex": "^3.1.3"
},
"devDependencies": {
"@babel/runtime": "^7.20.0",
"@types/electron-devtools-installer": "^2.2.2",
"@types/jest": "^29.2.0",
"@types/jsdom": "^20.0.0",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@vue/cli-plugin-babel": "^5.0.0-beta.4",
"@vue/cli-plugin-e2e-cypress": "^5.0.0-beta.4",
"@vue/cli-plugin-eslint": "^5.0.0-beta.4",
"@vue/cli-plugin-router": "^5.0.0-beta.4",
"@vue/cli-plugin-typescript": "^5.0.0-beta.4",
"@vue/cli-plugin-unit-jest": "^5.0.0-beta.4",
"@vue/cli-plugin-vuex": "^5.0.0-beta.4",
"@vue/cli-service": "^5.0.0-beta.4",
"@vue/composition-api": "^1.7.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^8.0.0",
"@vue/test-utils": "^1.2.2",
"@vue/vue2-jest": "^27.0.0-alpha.2",
"babel-plugin-require-context-hook": "^1.0.0",
"css-unicode-loader": "^1.0.3",
"electron": "^13.0.0",
"electron-devtools-installer": "^3.1.0",
"eslint": "^7.29.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-vue": "^7.20.0",
"jest": "^27.2.2",
"jsdom": "^16.6.0",
"lint-staged": "^9.5.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.2.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"ts-jest": "^27.0.5",
"typescript": "~4.4.4",
"vue-cli-plugin-electron-builder": "^3.0.0-alpha.3",
"vue-cli-plugin-test-attrs": "^0.1.5",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "2.6.14"
},
"resolutions": {
"@polkadot/extension-dapp": "^0.44.7",
"@polkadot/extension-inject": "^0.44.7",
"@polkadot/util": "^10.2.1",
"ipfs-unixfs": "6.0.6",
"ipfs-unixfs-exporter": "7.0.6",
"ipfs-unixfs-importer": "9.0.6"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}