-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 862 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 862 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
{
"name": "@starknet-bootcamp/monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@openzeppelin/**",
"**/@nomiclabs/**",
"**/@typechain/**",
"**/typechain/**",
"**/typescript/**",
"**/ts-node/**",
"**/mocha/**",
"@typescript-eslint/**"
]
},
"scripts": {
"compile": "yarn workspace @starknet-bootcamp/contracts run compile",
"deploy:starknet:devnet": "yarn workspace @starknet-bootcamp/contracts run deploy:starknet:devnet",
"deploy:starknet:testnet": "yarn workspace @starknet-bootcamp/contracts run deploy:starknet:testnet",
"test": "yarn workspace @starknet-bootcamp/contracts run test",
"ui:start": "yarn workspace @starknet-bootcamp/web run dev",
"ui:build": "yarn workspace @starknet-bootcamp/web run build"
}
}