-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "star-world-order",
"version": "1.0.0",
"description": "Star World Order (SWO) - NFT/DAO Dapp for Skrumpeys on Monad Chain",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"compile": "node scripts/compile-contracts.js",
"test:network": "node scripts/test-connection.js",
"db:init": "mkdir -p data && sqlite3 data/swo.db < scripts/init-db.sql",
"db:fetch-metadata": "npx tsx scripts/fetch-metadata-to-db.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tanstack/react-query": "^5.90.12",
"better-sqlite3": "^12.5.0",
"ethers": "^6.16.0",
"next": "^16.0.10",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"viem": "^2.41.2",
"wagmi": "^3.1.0"
},
"devDependencies": {
"@openzeppelin/contracts": "^5.4.0",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/ui": "^4.0.16",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.10",
"playwright": "^1.57.0",
"postcss": "^8.5.6",
"solc": "^0.8.31",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}