-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.67 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
{
"name": "claimfund",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build-and-check": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@metaplex-foundation/js": "0.20.1",
"@metaplex-foundation/mpl-bubblegum": "^3.1.2",
"@metaplex-foundation/mpl-core": "^0.4.2",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/mpl-toolbox": "^0.9.4",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@metaplex-foundation/umi-signer-wallet-adapters": "^0.9.1",
"@metaplex-foundation/umi-uploader-nft-storage": "^0.9.1",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.1",
"@rollup/plugin-inject": "^5.0.5",
"@solana/spl-token": "^0.4.1",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-wallets": "^0.19.32",
"@solana/web3.js": "1.91.1",
"@tiplink/api": "^0.1.9",
"pinia": "^2.1.7",
"solana-wallets-vue": "^0.6.1",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"vue-toast-notification": "^3.1.2"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.10",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"assert": "^2.1.0",
"autoprefixer": "^10.4.18",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"cypress": "^13.6.3",
"eslint": "^8.49.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^24.0.0",
"npm-run-all2": "^6.1.1",
"postcss": "^8.4.35",
"prettier": "^3.0.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"sass": "^1.71.1",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.0",
"util": "^0.12.5",
"vite": "^5.0.11",
"vite-plugin-node-polyfills": "^0.21.0",
"vitest": "^1.2.2",
"vue-tsc": "^1.8.27"
}
}