-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.63 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
{
"name": "fffanalytics",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"kill": "taskkill /f /im node.exe",
"dev": "next dev",
"build": "next build && tsc && tsc-alias",
"start": "next start",
"lint": "next lint",
"tsc:scripts": "tsc -p tsconfig.scripts.json",
"fetch-data": "npm run tsc:scripts && node dist/scripts/fetchCollectionData.js",
"fetch-missions": "npm run tsc:scripts && node dist/scripts/fetchMissions.js",
"fetch-trx": "npm run tsc:scripts && node dist/scripts/fetchAndInsertMissionResults.js",
"fetch-test": "npm run tsc:scripts && node dist/scripts/testTransaction.js",
"fetch-test-start": "npm run tsc:scripts && node dist/scripts/testStartMission.js",
"fetch-foxes": "npm run tsc:scripts && node dist/scripts/fetchFoxAccounts.js",
"fetch-fox-snapshots": "npm run tsc:scripts && node dist/scripts/fetchFoxSnapshots.js"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@project-serum/anchor": "^0.26.0",
"@solana/web3.js": "^1.95.2",
"@supabase/supabase-js": "^2.45.1",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"json2csv": "6.0.0-alpha.2",
"next": "^14.2.5",
"node-fetch": "^3.3.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/json2csv": "^5.0.7",
"@types/node": "^20.14.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.9",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.5.4"
}
}