forked from horuslabsio/Starknet-Scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.81 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "create-starknet-app",
"version": "0.4.1",
"description": "An open-source starknet development stack",
"bin": "./bin/cli.mjs",
"scripts": {
"build-contracts": "cd contracts && scarb build",
"test-contracts": "cd contracts && snforge test",
"format-contracts": "cd contracts && scarb fmt",
"contract-scripts": "cd contracts/scripts && sncast --url ${npm_config_url} --account ${npm_config_account} script run",
"generate-interface": "cd contracts && src5_rs parse",
"prepare-account": "cd contracts && sncast --url ${npm_config_url} account create --name ${npm_config_name} --add-profile",
"deploy-account": "cd contracts && sncast --profile ${npm_config_profile} account deploy --name ${npm_config_name} --max-fee ${npm_config_maxfee}",
"delete-account": "cd contracts && sncast --url ${npm_config_url} account delete --name ${npm_config_name} --network ${npm_config_network}",
"declare-contract": "cd contracts && sncast --profile ${npm_config_profile} declare --contract-name ${npm_config_contract}",
"deploy-contract": "cd contracts && sncast --profile ${npm_config_profile} deploy --class-hash ${npm_config_classhash}",
"devnet": "sh ./devnet/start.sh",
"start": "cd frontend && npm run dev",
"install": "cd frontend && npm install --legacy-peer-deps",
"build-ui": "cd frontend && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/argentlabs/Starknet-Scaffold.git"
},
"keywords": [
"Starknet",
"Starknet-frontend",
"Starknet-react",
"Starknetkit"
],
"author": "Darlington Nnam",
"license": "ISC",
"bugs": {
"url": "https://github.com/argentlabs/Starknet-Scaffold/issues"
},
"homepage": "https://github.com/argentlabs/Starknet-Scaffold#readme",
"dependencies": {
"ora": "^8.0.1"
}
}