-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 868 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 868 Bytes
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
{
"name": "openstock",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server.mjs --dev",
"build": "next build",
"start": "node server.mjs",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"test": "node scripts/verify-scaled-amounts.mjs"
},
"dependencies": {
"@meteora-ag/dynamic-bonding-curve-sdk": "^1.5.12",
"@solana/web3.js": "^1.99.0",
"bs58": "^6.0.0",
"next": "^15.5.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"simple-icons": "^16.30.0",
"tweetnacl": "^1.0.3",
"ws": "^8.21.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.18.1",
"playwright": "^1.63.0",
"postcss": "8.5.28",
"typescript": "^5.7.0"
},
"overrides": {
"postcss": "$postcss"
}
}