This repository was archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 KB
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
{
"name": "mesh-core",
"homepage": "https://meshjs.dev",
"version": "1.0.0",
"repository": "(https://github.com/MeshJS/mesh-core.git",
"author": "MeshJS",
"license": "Apache-2.0",
"scripts": {
"lerna": "lerna",
"prepare": "husky install",
"ci": "yarn && yarn build",
"build": "yarn build:common && yarn build:csl && yarn build:csdk",
"build:csl": "lerna exec --scope @meshsdk/core-csl -- yarn ci",
"build:csdk": "lerna exec --scope @meshsdk/core-csdk -- yarn ci",
"build:common": "lerna exec --scope @meshsdk/common -- yarn ci",
"test": "jest",
"lint": "eslint '*/**/*.ts' && npx lint-staged"
},
"dependencies": {
"@meshsdk/common": "^1.0.0-alpha.12"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/jest": "28.1.6",
"@types/node": "18.6.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"commitlint": "^17.4.3",
"eslint": "8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lerna": "^8.1.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "4.8.2"
},
"lint-staged": {
"**/*.{js,ts,}": [
"yarn prettier --write",
"yarn eslint --fix"
]
}
}