-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
108 lines (108 loc) · 3.19 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
{
"name": "polkaswap-exchange-web",
"version": "1.43.1",
"repository": {
"type": "git",
"url": "https://github.com/sora-xor/polkaswap-exchange-web.git"
},
"engines": {
"node": ">=20"
},
"license": "Apache-2.0",
"private": true,
"author": "jihoon@tutanota.de <jihoon@tutanota.de>",
"main": "index.js",
"scripts": {
"serve": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky",
"electron:build": "electron-vite build",
"electron:serve": "electron-vite dev",
"lint": "eslint",
"lang:generate": "tsx ./scripts/lang/generate.ts",
"lang:fix": "tsx ./scripts/lang/fix.ts",
"test:unit": "vitest run --project unit --pass-with-no-tests",
"test:translation": "vitest run --project translation --pass-with-no-tests",
"test:e2e": "vitest run --project e2e --pass-with-no-tests",
"test:all": "yarn test:unit"
},
"dependencies": {
"@cedelabs/widgets-universal": "^1.3.1",
"@metamask/detect-provider": "^2.0.0",
"@soramitsu/soraneo-wallet-web": "1.43.5",
"@walletconnect/ethereum-provider": "^2.13.3",
"@walletconnect/modal": "^2.6.2",
"country-code-emoji": "^2.3.0",
"country-flag-emoji-polyfill": "^0.1.8",
"direct-vuex": "^0.12.1",
"echarts": "^5.5.1",
"email-validator": "^2.0.4",
"ethers": "6.13.4",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"polkadotApi": "npm:@polkadot/api@11.2.1",
"uuidv4": "^6.2.13",
"vue": "2.7.14",
"vue-class-component": "^7.2.6",
"vue-echarts": "^6.7.3",
"vue-grid-layout": "^2.4.0",
"vue-i18n": "^8.28.2",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.6.5",
"vuex": "^3.6.2"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@eslint/js": "^9.13.0",
"@types/electron-devtools-installer": "^2.2.5",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.12",
"@types/node": "^22.7.9",
"@types/telegram-web-app": "^7.10.1",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue/test-utils": "^1.3.6",
"cssnano": "^7.0.6",
"electron": "^33.0.2",
"electron-devtools-installer": "^3.2.0",
"electron-vite": "^2.3.0",
"eslint": "9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-vue": "9.29.1",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"sass": "^1.80.3",
"tsx": "^4.19.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.10",
"vite-plugin-dynamic-import": "^1.6.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.3"
},
"resolutions": {
"@polkadot/extension-dapp": "^0.44.7",
"@polkadot/extension-inject": "^0.44.7",
"@polkadot/util": "^12.6.2",
"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}": [
"eslint --fix",
"git add"
]
}
}