-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.25 KB
/
package.json
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
{
"name": "dApp-staking-v3",
"version": "1.0.0",
"description": "Astar dApp staking v3 library",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build --verbose",
"start": "ts-node src/index.ts",
"start:ui": "npm run build && npm run dev --workspace ./packages/dapp-staking-ui",
"pack:staking": "npm build & npm pack --workspace ./packages/astar-dapp-staking-v3 --pack-destination ./packages/astar-dapp-staking-v3",
"pack:components": "npm build & npm pack --workspace ./packages/dapp-staking-components --pack-destination ./packages/dapp-staking-components",
"publish:staking": "npm build & npm publish --workspace ./packages/astar-dapp-staking-v3",
"publish:components": "npm build & npm publish --workspace ./packages/dapp-staking-components",
"docgen:staking": "npm run docs --workspace ./packages/astar-dapp-staking-v3",
"test:staking": "npm run build & npm run test --workspace ./packages/astar-dapp-staking-v3-test"
},
"dependencies": {
"@astar-network/dapp-staking-v3": "^1.0.0",
"@astar-network/dapp-staking-components": "^1.0.0",
"@polkadot/api": "^12.2.1",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/node": "^22.5.5",
"ts-node": "^10.9.2"
}
}