-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 889 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 889 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
{
"name": "token-dex",
"version": "1.0.0",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev:backend": "yarn workspace token-dex-backend dev",
"dev:frontend": "yarn workspace token-dex-frontend dev",
"dev": "concurrently \"yarn dev:backend\" \"yarn dev:frontend\"",
"build": "yarn workspace token-dex-backend build && yarn workspace token-dex-frontend build",
"test": "anchor test",
"anchor:build": "anchor build",
"anchor:deploy:localnet": "anchor deploy --provider.cluster localnet",
"anchor:deploy:devnet": "anchor deploy --provider.cluster devnet"
},
"devDependencies": {
"@coral-xyz/anchor": "^0.32.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^9.1.1",
"chai": "^4.5.0",
"concurrently": "^8.2.0",
"mocha": "^9.2.2",
"ts-mocha": "^10.1.0",
"typescript": "^5.3.0"
}
}