forked from hashgraph/stablecoin-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 3.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "hedera-stable-coin",
"version": "1.24.0",
"description": "stablecoin studio",
"scripts": {
"install": "node install.js && npm run build:cli:full && npm run prepare",
"install:backend": "cd backend && npm install",
"install:contracts": "cd contracts && npm install",
"install:hashconnect": "cd hashconnect/lib && npm install",
"install:sdk": "cd sdk && npm install",
"install:custodialwalletutils": "cd custodialwalletutils && npm install",
"install:cli": "cd cli && npm install",
"install:web": "cd web && npm install",
"publish:backend": "cd backend && npm publish",
"publish:contracts": "cd contracts && npm publish",
"publish:hashconnect": "cd hashconnect/lib && npm publish",
"publish:sdk": "cd sdk && npm publish",
"publish:cli": "cd cli && npm publish",
"publish:web": "cd web && npm publish",
"publish:custodialwalletutils": "cd custodialwalletutils && npm publish",
"build:sdk": "cd sdk && npm run build",
"build:cli": "cd cli && npm run build",
"build:cli:full": "npm run build:backend && npm run build:contracts && npm run build:hashconnect && npm run build:sdk && npm run build:cli",
"build:backend": "cd backend && npm run build",
"build:contracts": "cd contracts && npm run compile:force",
"build:web": "cd web && npm run build",
"build:hashconnect": "cd hashconnect/lib && npm run build",
"build:custodialwalletutils": "cd custodialwalletutils && npm run build",
"setup": "npm run install",
"clean": "concurrently \"npm run --silent clean:all:build\" \"npm run --silent clean:all:modules\" > '/dev/null' 2>&1",
"clean:custodialwalletutils:modules": "rimraf ./custodialwalletutils/node_modules",
"clean:sdk:modules": "rimraf ./sdk/node_modules",
"clean:backend:modules": "rimraf ./backend/node_modules",
"clean:cli:modules": "rimraf ./cli/node_modules",
"clean:web:modules": "rimraf ./web/node_modules",
"clean:contracts:modules": "rimraf ./contracts/node_modules",
"clean:all:modules": "concurrently \"npm run clean:sdk:modules\" \"npm run clean:backend:modules\" \"npm run clean:cli:modules\" \"npm run clean:web:modules\" \"npm run clean:contracts:modules\" \"npm run clean:custodialwalletutils:modules\"",
"clean:sdk:build": "rimraf ./sdk/build",
"clean:cli:build": "rimraf ./cli/build",
"clean:backend:build": "rimraf ./backend/dist",
"clean:web:build": "rimraf ./web/build",
"clean:web:custodialwalletutils": "rimraf ./custodialwalletutils/build",
"clean:contracts:build": "rimraf ./contracts/build",
"clean:all:build": "concurrently \"npm run clean:sdk:build\" \"npm run clean:backend:build\" \"npm run clean:cli:build\" \"npm run clean:web:build\" \"npm run clean:contracts:modules\" \"npm run clean:custodialwalletutils:modules\"",
"prepare": "husky",
"commitlint": "commitlint --edit",
"prettier": "concurrently \"npm run prettier:sdk\" \"npm run prettier:backend\" \"npm run prettier:web\" \"npm run prettier:cli\" \"npm run prettier:contracts\" \"npm run prettier:custodialwalletutils\"",
"prettier:sdk": "cd sdk && npm run prettier",
"prettier:web": "cd web && npm run prettier",
"prettier:cli": "cd cli && npm run prettier",
"prettier:backend": "cd backend && npm run prettier",
"prettier:custodialwalletutils": "cd custodialwalletutils && npm run prettier",
"prettier:contracts": "cd contracts && npm run prettier"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"concurrently": "^7.6.0",
"elliptic": "^6.5.5",
"ethers": "^5.7.2",
"rimraf": "^4.1.1",
"serverless": "^3.34.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"dotenv": "^16.3.1",
"fs": "^0.0.1-security",
"husky": "^9.0.11"
}
}