-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.97 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
59
60
61
62
63
64
65
{
"name": "neptune-wallet",
"private": true,
"version": "4.2.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit -p tsconfig.json",
"typecheck:watch": "tsc --noEmit -p tsconfig.json --watch",
"lint": "prettier . --check .",
"format": "prettier . --write .",
"open": "node opendir.js",
"build-mac": "zsh -c 'source appleid.env && tauri build --target universal-apple-darwin'",
"test": "tsx --test src/tests/*.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@mantine/charts": "^7.17.5",
"@mantine/core": "^7.17.5",
"@mantine/hooks": "^7.17.5",
"@mantine/modals": "^7.17.5",
"@mantine/notifications": "^7.17.5",
"@reduxjs/toolkit": "^2.6.0",
"@scure/bip39": "^1.5.4",
"@tabler/icons-react": "^3.31.0",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "2.7.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-opener": "2.5.0",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-updater": "^2.10.1",
"@types/node": "^20.5.9",
"ansi-to-react": "^6.1.6",
"axios": "^1.13.5",
"bignumber.js": "^9.2.1",
"date-fns": "^4.1.0",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-router-dom": "^7.13.2",
"recharts": "2"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tauri-apps/cli": "^2.8.4",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"postcss": "^8.5.3",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"sass": "^1.98.0",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "~5.6.2",
"vite": "^7"
}
}