-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.23 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "Blockchain_Interact_App",
"version": "0.3.3",
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@solana/spl-token": "^0.4.13",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"antd": "^6.4.3",
"bip39": "^3.1.0",
"crypto-browserify": "^3.12.1",
"dotenv": "^17.4.2",
"ethers": "^6.16.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"scripts": {
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"dev:vite": "vite",
"build:vite": "vite build",
"preview:vite": "vite preview --port 9754",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .js,.jsx",
"lint:fix": "eslint src --ext .js,.jsx --fix",
"verify:ci": "npm ci --ignore-scripts && npm run lint && npm test && npm run build:vite",
"prepare": "husky",
"version": "node scripts/sync-version.js && git add src-tauri/tauri.conf.json src-tauri/Cargo.toml",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"@solana/web3.js": "1.95.4",
"@solana/codecs-core": "2.2.0",
"@solana/codecs-data-structures": "2.2.0",
"@solana/codecs-numbers": "2.2.0",
"@solana/codecs-strings": "2.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@noble/hashes": "^2.2.0",
"@tailwindcss/postcss": "^4.3.0",
"@tauri-apps/cli": "^2",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.7",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"postcss": "^8.4.49",
"tailwindcss": "^4.3.0",
"vite": "^8.0.14",
"vitest": "^4.1.7"
}
}