-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1009 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
{
"name": "storylock",
"version": "0.1.0",
"private": true,
"workspaces": ["app", "backend"],
"scripts": {
"dev": "concurrently \"npm run dev --workspace=backend\" \"npm run dev --workspace=app\"",
"build": "npm run build --workspace=app",
"test": "anchor test",
"anchor:build": "anchor build",
"anchor:deploy": "anchor deploy",
"anchor:devnet": "anchor deploy --provider.cluster devnet",
"localnet": "bash scripts/localnet.sh",
"localnet:validator": "solana-test-validator --reset",
"localnet:deploy": "anchor build && anchor deploy --provider.cluster localnet",
"localnet:airdrop": "solana airdrop 10 --url http://127.0.0.1:8899"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.3.3",
"@types/node": "^20.11.0",
"ts-mocha": "^10.0.0",
"@types/mocha": "^10.0.6",
"chai": "^4.3.10",
"@types/chai": "^4.3.11"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@solana/web3.js": "^1.91.1"
}
}