-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
20 lines (20 loc) · 969 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "nft-archiverse",
"version": "1.0.0",
"description": "Archiverse NFT Marketplace",
"author": "Wakili Almustapha",
"license": "ISC",
"scripts": {
"build": "cd nft-contract && bash build.sh && cd .. && ls && cd market-contract && bash build.sh && cd ..",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "npm run test:unit:nft && npm run test:unit:market",
"test:unit:nft": "cd nft-contract && cargo test -- --nocapture --color=always && cd ..",
"test:unit:market": "cd market-contract && cargo test -- --nocapture --color=always && cd ..",
"test:integration": "npm run test:integration:ts && npm run test:integration:rs",
"test:integration:ts": "cd integration-tests/ts && npm i && npm run test",
"test:integration:rs": "cd integration-tests/rs && cargo run --example integration-tests"
},
"dependencies": {
"yarn": "^1.22.19"
}
}