-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.12 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
{
"name": "@hashgraph/hedera-asset-tokenization",
"version": "1.11.0",
"description": "asset tokenization",
"scripts": {
"install:all": "node install.js && npm run prepare",
"install:contracts": "cd contracts && npm ci",
"install:sdk": "cd sdk && npm ci",
"install:web": "cd web && yarn install",
"publish:contracts": "cd contracts && npm publish",
"publish:sdk": "cd sdk && npm publish",
"publish:web": "cd web && npm publish",
"build:sdk": "cd sdk && npm run build",
"build:contracts": "cd contracts && npm run compile:force",
"build:web": "cd web && 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:sdk:modules": "rimraf ./sdk/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:web:modules\" \"npm run clean:contracts:modules\"",
"clean:sdk:build": "rimraf ./sdk/build",
"clean:web:build": "rimraf ./web/build",
"clean:contracts:build": "rimraf ./contracts/build",
"clean:all:build": "concurrently \"npm run clean:sdk:build\" \"npm run clean:web:build\" \"npm run clean:contracts:modules\"",
"prepare": "husky",
"commitlint": "commitlint --edit",
"prettier": "concurrently \"npm run prettier:sdk\" \"npm run prettier:web\" \"npm run prettier:contracts\"",
"prettier:sdk": "cd sdk && npm run prettier",
"prettier:web": "cd web && npm run prettier",
"prettier:contracts": "cd contracts && npm run prettier",
"pre-commit:sdk": "cd sdk && npm run pre-commit"
},
"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"
}
}