-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.65 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.65 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
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
{
"name": "tokenforge",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "convex dev --once --typecheck=disable && node setup.mjs && npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "vite --open",
"dev:backend": "convex dev --typecheck=disable",
"lint": "tsc -p convex -noEmit && tsc -p . -noEmit",
"type-check": "tsc -p convex -noEmit && tsc -p . -noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:ci": "vitest run --reporter=verbose",
"test:coverage": "vitest run --coverage",
"test:contracts": "hardhat test",
"test:integration": "vitest run test/integration",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run test:contracts && npm run test:run && npm run test:integration",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"release:first": "standard-version --first-release",
"prepare": "husky",
"compile": "hardhat compile",
"deploy:testnet": "hardhat run scripts/deploy.js",
"deploy:mainnet": "tsx scripts/deploy-mainnet.ts",
"verify:contracts": "tsx scripts/verify-contracts.ts",
"check:mainnet": "tsx scripts/check-mainnet-config.ts",
"deploy:staging": "./scripts/deploy.sh staging",
"deploy:production": "./scripts/deploy.sh production",
"deploy:quick": "./scripts/deploy.sh staging true"
},
"dependencies": {
"@convex-dev/auth": "^0.0.80",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@metaplex-foundation/mpl-toolbox": "^0.10.0",
"@metaplex-foundation/umi": "^1.2.0",
"@metaplex-foundation/umi-bundle-defaults": "^1.2.0",
"@solana/web3.js": "^1.98.2",
"@uniswap/sdk-core": "^7.7.2",
"@uniswap/v3-sdk": "^3.25.2",
"bs58": "^6.0.0",
"chart.js": "^4.4.9",
"clsx": "^2.1.1",
"convex": "1.21.1-alpha.1",
"date-fns": "^4.1.0",
"ethers": "^6.14.1",
"lucide-react": "^0.511.0",
"node-fetch": "^3.3.2",
"node-telegram-bot-api": "^0.66.0",
"react": "^19.0.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.0.0",
"react-router-dom": "^6.30.1",
"sonner": "^2.0.3",
"tailwind-merge": "^3.1.0",
"twitter-api-v2": "^1.23.2"
},
"overrides": {
"convex": "1.21.1-alpha.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.21.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.3.0",
"@playwright/test": "^1.49.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.10",
"@types/node-telegram-bot-api": "^0.64.8",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.1.4",
"autoprefixer": "~10",
"chai": "^4.5.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"hardhat": "^2.24.0",
"husky": "^9.1.7",
"inquirer": "^12.6.3",
"jsdom": "^26.1.0",
"npm-run-all": "^4.1.5",
"postcss": "~8",
"prettier": "^3.5.3",
"recharts": "^2.15.3",
"standard-version": "^9.5.0",
"tailwindcss": "~3",
"tsx": "^4.19.4",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vitest": "^3.1.4"
}
}