-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 KB
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
{
"name": "wallet-dapp",
"private": true,
"version": "0.6.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dfinity/orbit.git",
"directory": "apps/wallet"
},
"engines": {
"node": "^20",
"pnpm": "^9",
"npm": "please use pnpm",
"yarn": "please use pnpm"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"type-check": "vue-tsc --noEmit",
"lint": "concurrently -n prettier,eslint -c auto \"prettier --ignore-path ../../.prettierignore --check .\" \"eslint .\"",
"format": "concurrently -n prettier,eslint -c auto \"prettier --ignore-path ../../.prettierignore --write .\" \"eslint --fix .\""
},
"dependencies": {
"@icp-sdk/core": "1.0.0-beta.1",
"@dfinity/candid": "3.0.0-beta.2",
"@dfinity/auth-client": "3.0.0-beta.2",
"@dfinity/identity": "3.0.0-beta.2",
"@dfinity/didc": "0.0.4",
"@dfinity/ledger-icrc": "2.8.0",
"@dfinity/utils": "2.12.0",
"@mdi/font": "7.4.47",
"@mdi/js": "7.4.47",
"buffer": "6.0.3",
"fflate": "^0.8.2",
"pinia": "2.1.7",
"pino": "9.1.0",
"validator": "13.12.0",
"vue": "3.5.13",
"vue-i18n": "9.14.3",
"vue-router": "4.3.2",
"vuetify": "3.5.18"
},
"devDependencies": {
"@pinia/testing": "0.1.3",
"@types/validator": "13.11.10",
"@vitejs/plugin-vue": "5.2.1",
"@vue/test-utils": "2.4.6",
"cheerio": "1.0.0-rc.12",
"jsdom": "24.0.0",
"resize-observer-polyfill": "1.5.1",
"sass": "1.77.1",
"vite-plugin-vuetify": "2.0.4",
"vite-plugin-wasm": "3.4.1"
}
}